Q. What will be the output?
public class Test{
public static void main(String[] args){
int[] x = new int[3];
System.out.println("x[0] is " + x[0]);
}
}
public class Test{
public static void main(String[] args){
int[] x = new int[3];
System.out.println("x[0] is " + x[0]);
}
}
β
Correct Answer: (C)
The program runs fine and displays x[0] is 0.
Explanation: Program is syntactically correct, so no error.