Consider the code fragment
Object intObj = new Integer(9);
System.out.println((String) intObj);
What will be output as a result of running the fragment?
(A) No output. A ClassCastException will be thrown.
(B) No output. An ArithmeticException will be thrown.
(C) 9
(D) "9"
(E) nine