Java SE 8 Programmer 1Z0–808 Practice Full Test 1
© examsiri.com
Question : 51 of 84
Marks:
+1,
-0
Given:
What is the result?
public class Test {
public static void main(String[] args) {
boolean a = new Boolean(Boolean.valueOf(args[0]));
boolean b = new Boolean(args[1]);
System.out.println(a + " " + b);
}
}And given the commands: javac Test.java
java Test TRUE null What is the result?
Go to Question: