Oracle
1Z0-819 · Question #159
1Z0-819 Question #159: Real Exam Question with Answer & Explanation
Sign in or unlock 1Z0-819 to reveal the answer and full explanation for question #159. The question stem and answer options stay visible for context.
Question
public class Main {
public static public static void main(String[] args) {
int i = 1;
for(String s : args) {
System.out.println((i++) + " " + s);
}
}
}
executed with this command:
java Main one two three
What is the output of this class?
Options
- AThe compilation fails.
- BThe program throws a ClassCastException.
- CA java.lang.ArrayIndexOutOfBoundsException is thrown.
- D1 one
- E1one 2two 3three
Unlock 1Z0-819 to see the answer
You've previewed enough free 1Z0-819 questions. Unlock 1Z0-819 for full answers, explanations, the timed quiz mode, progress tracking, and the master PDF. Question stem and options stay visible so you can still see what's on the exam.