Examveda
Examveda

What will be the output of the following Java program?
class Alligator 
{
 public static void main(String[] args) 
  {
  int []x[] = {{1,2}, {3,4,5}, {6,7,8,9}};
  int [][]y = x;
  System.out.println(y[2][1]);
  }
}

A. 2

B. 3

C. 7

D. Compilation Error

Answer: Option C


This Question Belongs to Java Program >> Overriding And Overloading

Join The Discussion

Related Questions on Overriding and Overloading