Final Answer:
(a) FCFS: Page fault ratio is 5/12, (b) OPT: Page fault ratio is 3/12, (c) LRU: Page fault ratio is 4/12.
Step-by-step explanation:
(a) FCFS (First Come First Serve) considers the order of page references. In the given sequence, there are 5 page faults out of 12 total references, resulting in a page fault ratio of 5/12.
(b) OPT (Optimal) algorithm predicts future page references and selects the page that will not be used for the longest period. In the provided sequence, OPT results in 3 page faults out of 12, leading to a page fault ratio of 3/12.
(c) LRU (Least Recently Used) replaces the least recently used page. In the given sequence, LRU yields 4 page faults out of 12, resulting in a page fault ratio of 4/12.
Option A (FCFS), B (OPT), C (LRU) is the answer.