lenelex.com
Home
Quizzes
Games
Register
Log in
Question 1 of 20
What is the output of the following code fragment?
int[,,] array = new int[,,] { {{1,2},{4,5}}, {{6,7},{8,9}} }; int x = array[0, 0, 1]; Console.WriteLine(x);
A. 2
B. 4
C. 6
D. 5
E. 1
Links:
Multidimensional Arrays