InterviewSolution
Saved Bookmarks
| 1. |
Which of the following page replacement algorithms return the minimum number of page faults?(a) LRU replacement algorithm(b) Optimal page replacement algorithm(c) FIFO(d) Counting based replacementThis question was posed to me by my school principal while I was bunking the class.Asked question is from Page Replacement Algorithms topic in chapter Page Replacement Algorithms of Data Structures & Algorithms II |
|
Answer» RIGHT choice is (B) Optimal page replacement algorithm The best I can explain: Though FIFO is the simplest of all ALGORITHMS, optimal page replacement algorithm returns the minimum NUMBER of page faults. |
|