Question:

Which term is used to add an element into a stack?

Show Hint

Stacks follow the LIFO (Last In, First Out) principle, where the last element added is the first one to be removed.
Updated On: Apr 24, 2025
  • PUSH
  • PULL
  • SEEK
  • POP
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is A

Solution and Explanation

In stack operations, the term "PUSH" is used to add an element to the stack. "POP" is used to remove the top element, while "PEEK" allows you to view the top element without removing it. "PULL" and "SEEK" are not stack-related terms.
Was this answer helpful?
0
0