Question: If intStack is a newly created stack of Integers, then what is the output of the following code fragment? intStack.push(5); intStack.push(4); intStack.push(3); intStack.push(2); intStack.push(1); System.out.print(intStack.pop());
If intStack is a newly created stack of Integers, then what is the output of the following code fragment?
intStack.push(5); intStack.push(4); intStack.push(3); intStack.push(2); intStack.push(1); System.out.print(intStack.pop()); System.out.print(intStack.peek()); System.out.print(intStack.pop()); System.out.print(intStack.pop());
An ArrayStack is initialized with a capacity of 10. The push operation is then executed 23 times. What is the current capacity of the ArrayStack?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
