(17
Answer (Choose 1 answer)
Which of the following statements related to high dimensional arrays in C# is True?
A. using the below code, A[1,0] is 3 int[, ] A = new int[] {{1, 2}, {3, 4}};
B. C# does not support 2-dimensional arrays.
C. using the below code, A.Length = 2 int[, ] A = new int[,] {{1, 2}, {3, 4}};
D. This code creates a 3-dimensional array with 2 X 3 X 4 sizes.
int[] A = new int[2, 3, 4];
Elt