1
2.0kviews
Calculate the hit and miss using various page replacement policies LRU, OPT, FIFO for following sequence (page frame size 3) 4,7,3,0,1,7,3,8,5,4,5,3,4,7,534 state which one is best for above example?
1 Answer
2
67views

Given String Sequence - 4,7,3,0,1,7,3,8,5,4,5,3,4,7,5,3,4

Frame Size - 3

FIFO Page Replacement Algorithm

String 4 7 3 0 1 7 3 8 5 4 5 3 4 7 5 3 4
Frame 3 3 3 3 7 7 7 5 5 5 5 5 7 7 7 7
Frame 2 …

Create a free account to keep reading this post.

and 5 others joined a min ago.

Please log in to add an answer.