Given:  <br /> 11. public static void main(String[] args) {  <br /> 12. Object obj = new int[] { 1, 2, 3 };  <br /> 13. int[] someArray = (int[])obj;  <br /> 14. for (int i : someArray) System.out.print(i + " ");  <br /> 15. }  <br /> What is the result? ()
A、 Compilation fails because of an error in line 13.
B、 A ClassCastException is thrown at runtime.
C、 1 2 3
D、 Compilation fails because of an error in line 14.
E、 Compilation fails because of an error in line 12.