The ___________ algorithm selects the page to be replaced based on the time since it was last accessed.

  • FIFO (First-In-First-Out)
  • LFU (Least Frequently Used)
  • LRU (Least Recently Used)
  • MRU (Most Recently Used)
The Least Recently Used (LRU) algorithm selects the page for replacement that has not been accessed for the longest time among all pages in memory. It operates on the principle that pages that have not been accessed recently are less likely to be accessed in the near future compared to recently accessed pages. This helps in optimizing memory usage by keeping frequently accessed pages in memory.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *