Multiple choice technology architecture

The term "push" and "pop" is related to the

  1. array

  2. lists

  3. stacks

  4. all of above

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

Push and pop are the fundamental operations of stack data structures. Push adds an element to the top of the stack, while pop removes the top element. While stacks can be implemented using arrays or linked lists, the terms push and pop specifically refer to stack operations and are standard terminology for this abstract data type.