What is FIFO?

 What is FIFO? First-In First-Out Entering Retrieving Request
First-In, First-Out

     In computer programming, FIFO is an approach to handling program work requests from queues or stacks so that the oldest request is handled next. LIFO (last-in, first-out) is an approach in which the most recent request is handled next and the oldest request doesn't get handled until it is the only remaining request on the queue (or in the stack). Although LIFO seems "unfair," it may be more efficient. A stack that is handled using LIFO is sometimes referred to as a push-down or push-down pop-up stack or list.

More on this subject
Beginner's Help
BUG Club Home

 What is FIFO? First-In First-Out Entering Retrieving Request