MCQOPTIONS
Saved Bookmarks
| 1. |
Output for the following set of code : static void Main(string[] args) { int y = 3; y++; if (y <= 5) { Console.WriteLine("hi"); Main(args); } Console.ReadLine(); } |
| A. | Hi hi |
| B. | Hi |
| C. | Stack overflow exception |
| D. | None of the mentioned |
| Answer» D. None of the mentioned | |