Q45
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
AnswerD.
Compilation Error
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board