(Choose 1 answer)
Which of the following statements related to jagged arrays in C# is True?
A. Using the code below, A[1].Length is 4 int[][] A = new int[][] {new int[] {1,2,3}, new int[] {4, 5, 6, 7}};
B. Using the code below, A.Length is 5 int[][] A = new int[][] {new int[] {1,2,3}, new int[] {4, 5}};
C. Using the code below, A.GetLength(1) is 4 int[][] A = new int[][] {new int[] {1,2,3}, new int[] {4, 5, 6, 7}};
D. All of the others
Exit (12