Oracle
1Z0-809 · Question #176
1Z0-809 Question #176: Real Exam Question with Answer & Explanation
Sign in or unlock 1Z0-809 to reveal the answer and full explanation for question #176. The question stem and answer options stay visible for context.
Question
Given:
public class Test {
public static final int MIN = 1;
public static void main(String[] args) {
int x = 0; //line n1
if (checkLimit(x)) {
System.out.println("Java SE");
} else {
System.out.println("Java EE");
}
}
public static boolean checkLimit(int x) {
return (x >= MIN) ? true : false;
}
}
And given the commands:
javac Test
java Test
What is the result?
Options
- AA NullPointerException is thrown at runtime.
- BJava EE
- CJava EE
- DCompilation fails at line n1.
Unlock 1Z0-809 to see the answer
You've previewed enough free 1Z0-809 questions. Unlock 1Z0-809 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.