Description of FIFO
What is FIFO?
Answers
Answered by
5
FIFO is a data structure that is also called a queue. First In First Out..
It is a double ended queue organization of data items. The queues we see at any public service centers, public places are FIFOs.
Data is inserted into FIFO at the rear end and is taken out /deleted/read from the front end.
Some FIFOs have a fixed size and are organized in a circular FIFO too.
It is a double ended queue organization of data items. The queues we see at any public service centers, public places are FIFOs.
Data is inserted into FIFO at the rear end and is taken out /deleted/read from the front end.
Some FIFOs have a fixed size and are organized in a circular FIFO too.
Similar questions