What do you mean by FIFO algorithm ?
Answers
Answer:
Explanation:
first-in, first-out
The simplest page-replacement algorithm is a FIFO algorithm. The first-in, first-out (FIFO) page replacement algorithm is a low-overhead algorithm that requires little bookkeeping on the part of the operating system. ... In simple words, on a page fault, the frame that has been in memory the longest is replaced.
Mark as brainlist
FIFO algorithm is at type of frame on a page fault in which the frame remains in a memory until the longest is replaced.
1.FIFO algorithm is the basic and simplest page replacement algorithm.
2. In this algorithm, the operating system keeps a well developed sequence of all pages in the memory in a queue.
3.The oldest page remains in the front of the queue. And when a page needs to be replaced, the page which lies in the front of the queue is selected for removal.