(Choose 1 answer)
What is the output of the following code?static void Main(string[] args){
int[][] a = { new int[]{ 8, 7}, new int[] {1, 9, 3} };
int s = 0;for (int i = 0; i < a.Length; i++){
s += a[1][i];
} Console.WriteLine(s);
}
A. 10
B. 9
C. 12
D. 15
Exit 1