|
#111. Given: 11. public static void main (String[] args ) { 12. Object obj= new int[]{ 1, 2, 3 }; 13. int[] someArray = (int[])obj; 14. for (int i : someArray ) System. out. print(i +“ “ “ ); 15. }
What is the result?
Show comments for this question (1)
Add comments
Link to this question
|