Q14
What is the correct way to declare and initialize a jagged array in C#?
A.
int[][] jaggedArray = new int[3][];
AnswerB.
int[][] jaggedArray = new int[][];
C.
int[][] jaggedArray = new int[3][3];
D.
jaggedArray[][] = new int[3][];
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board