📚 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);
}
}

  1. Compilation Fails
  2. Null
  3. 0
  4. Java.lang.ArrayIndexOutOfBoundException
  5. Java.lang.NullPointerException