Computer Science, asked by rainmourkokavi, 1 year ago

Description of FIFO
What is FIFO?

Answers

Answered by kvnmurty
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.

Similar questions