Q67
Which statement is correct about following C# code? int[, ]a=5, 4, 3,9, 2, 6;
A.
'a' represents 1-D array of 5 integers
B.
a.GetUpperBound(0) gives 9
C.
'a' represents rectangular array of 2 columns and 3 arrays
AnswerD.
a.GetUpperBound(0) gives 2
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board