Q119
Which of the following is the correct way to declare a multidimensional array in Java?
A.
int[] arr;
B.
int arr[[]];
C.
int[][]arr;
AnswerD.
int[[]] arr;
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board