This is one of the simplest page replacement algorithm.
In this algorithm, OS maintains a queue that keeps track of all the pages in the memory, where the oldest page is at front and the most recent one at back.
When the page is needed to be replaced, this algorithm swaps out the page that is at front as it has been there for the longest time.
© G4_Team3.