(Choose 1 answer)
The following code will print
1: if(new Boolean("true") == new Boolean("true"))
2 System.out.println("True");
3: else
4:System.out.println("False");
A. Compilation error.
B. No compilation error, but runtime exception.
C. Prints "True".
D. Prints "False".
E. Depends on the particular implementation of the Java Virtual Machine
5