MCQOPTIONS
Saved Bookmarks
| 1. |
Select output for the following set of code. static void Main(string[] args) { int a = 5; int b = 10; int c; Console.WriteLine(c = ++ a + b ++); Console.WriteLine(b); Console.ReadLine(); } |
| A. | 11, 10 |
| B. | 16, 10 |
| C. | 16, 11 |
| D. | 15, 11 |
| Answer» D. 15, 11 | |