Multiple choice technology programming languages Which of these statements correctly declares a two-dimensional array in C#? int[,] testArray; int[][] testArray; int[2] testArray; System.Array[2] testArray; Reveal answer Fill a bubble to check yourself A Correct answer Explanation In C#, a two-dimensional array is declared using the syntax 'type[,] arrayName' where the comma indicates the number of dimensions. 'int[,]' declares a 2D array, while 'int[][]' would be a jagged array (array of arrays).