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