MCQOPTIONS
Saved Bookmarks
| 1. |
Consider you have a stack whose elements in it are as follows.5 4 3 2 |
| A. | Push(pop()), push(6), push(pop()) |
| B. | Push(pop()), push(6) |
| C. | Push(pop()), push(pop()), push(6) |
| D. | Push(6) |
| Answer» B. Push(pop()), push(6) | |