| 1. | Which of the following statements are correct about the C#.NET code snippet given below? 1 int[ , ] intMyArr = {{7, 1, 3}, {2, 9, 6}}; 2 intMyArr represents rectangular array of 2 rows and 3 columns. 3 intMyArr.GetUpperBound(1) will yield 2. 4 intMyArr.Length will yield 24. 5 intMyArr.GetUpperBound(0) will yield 2. |
|||||||||
Answer: Option A Explanation: No answer description available for this question. Let us discuss.
|
