(Choose 1 answer)
Which one statement is true about the following code fragment?
1. import java.lang.Math;
2. Math myMath = new Math();
3. System.out.println("cosine of 0.123 = " + myMath.cos(0.123));
A. Compilation fails at line 2.
B. Compilation fails at line 3
C. Compilation succeeds, although the import on line 1 is not necessary. During execution, an exception is thrown at line 3
D. Compilation succeeds. The import on line 1 is necessary. During execution, an exception is thrown at lir
E. Compilation succeeds and no exception is thrown during execution.
Exit 46