What would be the output of following code snippet? { try { int a, b; b = 0; a = 10 / b; Console.WriteLine("A"); } catch(ArithmeticException e) { Console.WriteLine("B"); } Console.ReadLine(); }
Correct Answer: b) B
Explanation:
Note: This Question is unanswered, help us to find answer for this one
More C# MCQ Questions