Question
Easy

Calculate number of page faults for reference string 3, 2, 4, 1, 3, 5, 2, 1, 7, 3, 0 considering four frames and eight pages of equal size and LRU page replacement technique :

1
3
2
4
3
5
4
6
Question Details
Time to Solve: 12
Exam: HTET
Level/Paper: Level 3
Chapter: Computer System & Hardware Fundamentals
Topic: Memory
Correct Answer
Option C
Explanation

The correct option is (3): The number of page faults is calculated by tracking the state of the four available memory frames against the reference string (3, 2, 4, 1, 3, 5, 2, 1, 7, 3, 0) using the Least Recently Used (LRU) algorithm. LRU is a demand paging strategy where a fault occurs if the requested page is not in any of the four frames, and the page that…Read More

Calculate number of page - HTET Level 3 | Clear Cutoff