MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program? class Output { public static void main(String args[]) { try { int a = 5; int b = 10; int c = b / a - 5; Console.WriteLine("Csharp"); } } } |
| A. | Csharp |
| B. | Sharp |
| C. | C |
| D. | Compile time error |
| Answer» E. | |