MCQOPTIONS
Saved Bookmarks
| 1. |
Select the output for the following set of code : static void Main(string[] args) { int i, j; for (i = 1, j = i; i <= 3 && j >= 0; i++, j--) { if (i == j) continue; else Console.WriteLine(j); } Console.ReadLine(); } |
| A. | I = 0, j = 1, |
| B. | I = 1, j = 0, |
| C. | J = 0, |
| D. | None of the mentioned |
| Answer» D. None of the mentioned | |