Solved

Which of the Following Correctly Declares and Initializes a Two-Dimensional

Question 66

Multiple Choice

Which of the following correctly declares and initializes a two-dimensional rectangular array of integers


A) int[,] sum = new int[3, 4];
B) int[] sum = new int[2, 4];
C) int sum[] = new int[2, 2];
D) None of the above.

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions