Java Programming Fundamentals
Casual Mode - Take your time!
1 / 15
Correct
0
Incorrect
0
Score
0%
Multiple Choice
What is the output of the given program?
public class ScopeTest
{
public static void main (String [] args)
{
int[][] xx[][][] = null;
System.out.println(xx);
}
}
- Compilation Fails
- Null
- 0
- Java.lang.ArrayIndexOutOfBoundException
- Java.lang.NullPointerException