leahelixabeth97641 leahelixabeth97641 29-04-2024 Computers and Technology Answered Evaluate the following code to determine the output:MyStack s = new MyStack();s.push(28);s.push(53);s.push(95);System.out.println(s.pop());