1
2.6kviews
Calculate Hit and Miss using LRU, Optimal and FIFO page replacement policies for the following sequence .page frame size is 3. sequence is 0,4,3,2,1,4,6,3,0,8,9,3,8,5.
1 Answer
1
116views

Sequence is 0,4,3,2,1,4,6,3,0,8,9,3,8,5 & frame size is 3

FIFO page replacement algorithm

FIFO
No of hits - 1
Miss (Page fault ) -13

LRU page replacement algorithm

LRU No of hits - 1
Miss (Page fault ) -13

Optimal page replacement algorithm

Optimal
No of hits - 1
Miss (Page fault ) -13

Please log in to add an answer.