What will be the output of the following code? import java.lang.*; public class One { public static void main(String arg[]) { int i[]={0,1,2,3,4,5}; Object o=i; int i2[]=(int[])o; for(int i3:i2) { System.out.print(i3); } } }
Reveal answer
Fill a bubble to check yourself