What Will Be The Output Of The Following Java Codep Pre #704
What will be the output of the following Java code?</p> <pre><code class="language-java"> import java.util.*; class TestJavaCollection1 { public static void main(String args[]) { ArrayList<String> list=new ArrayList<String>(); list.add("A"); Iterator itr=list.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.