Explain FIFO page replacement
A FIFO replacement algorithm associates with every page the time when that page was brought into memory. When a page must be changed, the oldest page is chosen. We can make a FIFO queue to hold all pages in memory. We change the page at the head of the queue. Insert page at the last of the queue.