MCQOPTIONS
Saved Bookmarks
| 1. |
Choose the correct one.int[] numbers = { 9, 10, 0, 11 }; var nums = from n in numbers select n + 1; foreach (var i in nums) { Console. Write (i+ , ); } |
| A. | 10, 11, 1, 12 |
| B. | 10, 11, 12, 13 |
| C. | 9, 10, 0, 11 |
| D. | None of these |
| Answer» B. 10, 11, 12, 13 | |