Question: Select an appropriate expression to complete the method below, which is designed to return the element at the bottom of a Stack collection. The rest

Select an appropriate expression to complete the method below, which is designed to return the element at the bottom of a Stack collection. The rest of the contents of the original stack (not including the bottom element) are restored before the method terminates. It is safe to assume that the original stack contains at least one element. public static Object getBottom(Stack theStack) Stack anotherStack - new Stack) while (theStack.size) 1) anotherStack. push (theStack.pop)); while (anotherStack.size)0) theStack.push(anotherStack.pop)) return o: O A. Object o anotherStack.peek0 B. Object o theStack.pop0: O C. Object o anotherStack.pop0: D. Object o theStack.peek0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
