What Will Be The Output Of The Following Java Codep Pre #703
What will be the output of the following Java code?</p> <pre><code class="language-java"> import java.util.*; public class Stack { public static void main(String args[]) { Stack<String> stack = new Stack<String>(); stack.push("A"); stack.push("B"); stack.pop(); Iterator<String> itr=stack.iterator(); while(itr.hasNext()) { System.out.println(itr.next()); } } }</code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs111 OOP Object Oriented Programming Java. It can also be found in gs gs111 Types of Classes (Using Java) - Collection Classes - Quiz No.2.