A queue follows _________.
2017
A queue follows _________.
- A.
FILO
- B.
LILO
- C.
FIFO
- D.
LIFO
Attempted by 342 students.
Show answer & explanation
Correct answer: C
The correct option is C. A queue is a linear data structure that operates on the FIFO (First-In, First-Out) principle. This means the element inserted first into the queue will be the first one to be removed, mimicking a real-world standing queue.