Question 1  of   20

What is the output of the following code fragment? int[,] array = new int[4,4] { {1,2,3,4}, {5,6,7,8}, {9,10,11,12}, {13,14,15,16 } }; int x = array[1, 4]; Console.WriteLine(x);

A. Error
B. 12
C. 11
D. 8
E. 7