What will be the output of the following code?
1 class AClass {2 String[] a;3 int[] numArray [] = {{1,2}, {1}};4 Object obj = new long[4];5 }
Reveal answer
Fill a bubble to check yourself
What will be the output of the following code?
1 class AClass {2 String[] a;3 int[] numArray [] = {{1,2}, {1}};4 Object obj = new long[4];5 }