

MCQOPTIONS
Saved Bookmarks
1. |
Which of the following statements are correct about the C#.NET code snippet given below? int[ , ] intMyArr = {{7, 1, 3}, {2, 9, 6}}; 1.intMyArr represents rectangular array of 2 rows and 3 columns. 2.intMyArr.GetUpperBound() will yield 2 |
A. | 2, 3 |
B. | 1, 2 |
C. | 1, 4 |
D. | 2, 5 |
Answer» C. 1, 4 | |