📚 Practice Mode
Java Programming Fundamentals
Learn at your own pace with hints and detailed explanations
1 / 15
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