Question 7


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".
1