1.

What is the output of the given code snippet? class Output { public static void main(String args[]) { try { int a = 0; int b = 5; int c = a / b - 5; Console.WriteLine("C"); } finally { Console.WriteLine("sharp"); } } }

A. C
B. Sharp
C. Csharp
D. None of the mentioned
Answer» D. None of the mentioned


Discussion

No Comment Found