23. What happens when we try to compile and run code
containing the following lines:
1. Float A = new Float( 1.0F );
2. String S = "value is " + A;
3. System.out.println( S );
Select 1 correct answer:
A. The compiler objects to line 2.
B. The program compiles and prints "value is 1.0".
C. A runtime exception occurs in line 2.