Saved Bookmarks
| 1. |
What is meant by push and pop operations? |
|
Answer» It is the process of inserting(adding) a new data item into the stack. If the stack is full and we try to add a new item into the stack makes the stack over flow, a. Pop operation It is the process of deleting(removing) a data item from the stack. If the stack is empty and we try to delete an item from the stack makes the stack underflow. |
|