Answer (Choose 1 answer)
Which of the following statements related to arrays in C# is True?
A. All of the others
B. In the below code, A[1] equals 0.
int[] A = new int[5];
C. The code below creates a one-dimensional integer array of 3 elements.
int[] A = new int[3];
D. The code below creates a one-dimensional array with 3 elements using the object initializer.int[] A = {1, 2, 3};
Elt