Challenger App

No.1 PSC Learning App

1M+ Downloads
Queue in Data Structure is :

ALIFO

BFIFO

CLILO

DBoth LIFO & LILO

Answer:

D. Both LIFO & LILO

Read Explanation:

Last in, first out (LIFO) is a method used to account for inventory that records the most recently produced items as sold first.


Related Questions:

The symbols used in an assembly language are :
ASCII stands for :
To process data, computers use
Which of the following programming language is classified as low level language ?

What is the value of sum after the execution of the following code?

int sum = 0;

for (int i = -5; i<=;i++)

{

         if (!i) break;

         sum += i;

}