MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the program? class Output { public static void main(String args[]) { try { int a = 10; int b = 5; int c = a / b - 5; Console.WriteLine("Hi"); } catch(Exception e) { Console.WriteLine("hello"); } } } |
| A. | Hi |
| B. | Hello |
| C. | Hihello |
| D. | Compile time error |
| Answer» C. Hihello | |