Q26
What is the correct way to declare a jagged array in C#?
A.
int[][][] jaggedArray;
B.
int[,] jaggedArray;
C.
jaggedArray[]
D.
int[][] jaggedArray;
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board