InterviewSolution
Saved Bookmarks
| 1. |
Process of removing an element from stack is called __________(a) Create(b) Push(c) Evaluation(d) PopThe question is from Stack Operations topic in division Abstract Data Types of Data Structures & Algorithms IThis question was posed to me during an internship interview. |
|
Answer» RIGHT answer is (d) Pop For explanation: ELEMENTS in the stack are REMOVED USING pop operation. Pop operation removes the top most element in the stack i.e. last entered element. |
|