InterviewSolution
Saved Bookmarks
| 1. |
What does ‘stack underflow’ refer to?(a) accessing item from an undefined stack(b) adding items to a full stack(c) removing items from an empty stack(d) index out of bounds exceptionWhat is the answer? Thanks in advance |
|
Answer» CORRECT answer is (c) REMOVING items from an EMPTY STACK The best explanation: Removing items from an empty stack is termed as stack UNDERFLOW. |
|