0
2.2kviews
Consider the page fault and hit using FIFO,LRU and Optimal page replacement algorithm for the following page sequence (2,3,5,4,2,5,7,3,8,7) Assume page frame size is 3.
1 Answer
0
70views

page sequence (2,3,5,4,2,5,7,3,8,7) frame size is 3.
FIFO
FIFO page replacement algorithm
No of hits = 2
Miss (Page fault) = 8

LRU
LRU page replacement algorithm
No of hits = 2
Miss ( Page fault) = 8

Optimal Optimal page replacement algorithm

No of hits = 3
Miss ( Page fault) = 7

Please log in to add an answer.