0
999views
Explain page replacement algorithm & find out page fault for following string using LRU method.6,0,12,0,30,4,2,30,32,1,20,15(Consider page frame size=3)
1 Answer
0
10views

LRU Page Replacement Policy

  • LRU stands for Least Recently Used page replacement strategy.
  • This algorithm works on the principle of “Last in First out“.
  • It replaces the newest page that arrived at last in the main memory.
  • It replaces the page that has not been referred by the CPU for …

Create a free account to keep reading this post.

and 3 others joined a min ago.

Please log in to add an answer.