Step 1: LRU (Least Recently Used) Page Replacement.
In LRU, the page that has not been used for the longest time is replaced.
Step 2: Process the page reference string.
We process the reference string one page at a time, replacing the least recently used page when necessary. The sequence of frames is updated after each reference.
- Reference 7 → Page fault, frames: [7]
- Reference 0 → Page fault, frames: [7, 0]
- Reference 1 → Page fault, frames: [7, 0, 1]
- Reference 2 → Page fault, replace 7 (LRU), frames: [0, 1, 2]
- Reference 0 → No page fault, frames: [0, 1, 2]
- Reference 3 → Page fault, replace 1 (LRU), frames: [0, 2, 3]
- Reference 0 → No page fault, frames: [0, 2, 3]
- Reference 4 → Page fault, replace 2 (LRU), frames: [0, 3, 4]
- Reference 2 → Page fault, replace 3 (LRU), frames: [0, 4, 2]
- Reference 3 → Page fault, replace 0 (LRU), frames: [3, 4, 2]
- Reference 0 → Page fault, replace 4 (LRU), frames: [3, 0, 2]
- Reference 3 → No page fault, frames: [3, 0, 2]
- Reference 2 → No page fault, frames: [3, 0, 2]
Step 3: Count the total number of page faults.
Total page faults = 9.
Consider a demand paging system with three frames, and the following page reference string: \[ 1\ 2\ 3\ 4\ 5\ 4\ 1\ 6\ 4\ 5\ 1\ 3\ 2. \] The contents of the frames are as follows initially and after each reference (from left to right):

The *-marked references cause page replacements. Which one or more of the following could be the page replacement policy/policies in use?