MCQOPTIONS
Saved Bookmarks
| 1. |
Choose the correct output for given set of code: class Program { static void Main(string[] args) { try { Console.WriteLine("csharp" + " " + 1/0); } finally { Console.WriteLine("Java"); } Console.ReadLine(); } } |
| A. | Csharp 0 |
| B. | Run time Exception generation |
| C. | Compile time error |
| D. | Java |
| Answer» C. Compile time error | |