Get premium membership and access questions with answers, video lessons as well as revision papers.

Name and describe four page replacement algorithms. Critically compare them with each other

      

Name and describe four page replacement algorithms. Critically compare them with each other

  

Answers


Faith
-OPTIMAL: Impossible to achieve, but perfect. Works on the Nostradamus-like basis that we can predict
which page won’t be used for the longest time, and elect that that one should be replaced.
-LEAST RECENTLY USED: Most commonly used, not quite optimal but better than the rest. We mark
every page with a timestamp and the one which has been least recently accessed gets the flick.
However we need to account for the extra overhead of adding/reading the time stamp, and who knows,
the next page we want to access might just be the one we’ve sent back to the aether. It’s quite a
performer though.
-CLOCK: Each page is marked with a ‘usage’ bit, and each is given a ‘second chance’ upon page
replacement time. The one that becomes unmarked first disappears. Not quite as accurate as LRU, but
has less of an overhead (one extra bit, as opposed to many for the timestamp).
-FIFO: The simple and dodgiest option, we make the foolish assumption that the oldest page in the queue
is the one that gets tossed. This is not quite always the case.
Titany answered the question on April 26, 2022 at 13:16


Next: Describe two virtual memory page fetch policies. Which is less common in practice? Why?
Previous: Describe buffering in the I/O subsystem of an operating system. Give reasons why it is required, and give a case where it is an advantage, and...

View More Operating Systems Questions and Answers | Return to Questions Index


Learn High School English on YouTube

Related Questions