Multiple choice technology architecture

Which of the following name does not relate to stacks?

  1. FIFO lists

  2. LIFO list

  3. Piles

  4. Push-down lists

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Stacks operate on LIFO (Last In First Out) principle, meaning the last element added is the first one removed. FIFO (First In First Out) is the characteristic of queues, not stacks. LIFO, piles, and push-down lists are all names associated with stack data structures, while FIFO specifically describes queue behavior.