Predict the output:
public class Test{
public static void main(String... args){
int[] index = new int[5];
System.out.println(index instanceof Object);
}
}
public class Test{
public static void main(String... args){
int[] index = new int[5];
System.out.println(index instanceof Object);
}
}A. true
B. false
C. Compilation fails with an error at line 3
D. Compilation fails with an error at line 4
E. None of these
Answer: Option A
Solution (By Examveda Team)
An array is always an instance of Object.
Related Questions on Array
How do you declare a one-dimensional array in Java?
A. int[] myArray;
B. int myArray[];
C. Array
D. All of the above
What is the correct way to initialize a two-dimensional array in Java?
A. int[][] myArray = {{1, 2}, {3, 4}};
B. int[2][2] myArray = {{1, 2}, {3, 4}};
C. int[2][2] myArray; myArray[0][0] = 1; myArray[0][1] = 2; myArray[1][0] = 3; myArray[1][1] = 4;
D. None of the above

Join The Discussion