Multiple choice

Which of the following data structures can be termed as push down list?

  1. Array

  2. Stack

  3. Queue

  4. Tree

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

A stack is known as a push down list because it follows the Last-In-First-Out (LIFO) principle, where elements are added (pushed) and removed (popped) from the same end.