Multiple choice

The operation for removing an entry from a stack is traditionally called

  1. delete

  2. peek

  3. pop

  4. remove

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

Pop is the standard term for removing an element from a stack, operating on the top element following LIFO (Last-In-First-Out) order. Delete is too generic, peek views without removing, and remove is not the conventional terminology for stack operations in computer science.