Vidyalelo
C# Programming · Q41

Exception Handling in C Sharp

Programming · C# Programming · question 41

Q41

What will be the output of the following C# code snippet? try int a, b; b = 0; a = 10 / b; Console.WriteLine("A"); catch(ArithmeticException e) Console.WriteLine("B"); Console.ReadLine();

A.
A
B.
B
Answer
C.
Compile time error
D.
Run time error

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board