MCQOPTIONS
Saved Bookmarks
| 1. |
Which statement is correct about following set of 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 |
| D. | A.GetUpperBound(0) gives 2 |
| Answer» D. A.GetUpperBound(0) gives 2 | |