Vidyalelo
C# Programming · Q45

Exception Handling in C Sharp

Programming · C# Programming · question 45

Q45

What will be the output of the following C# code snippet? class Program public static void Main(string[] args) try int a = 1; int b = 10 / a; try if (a == 1) a = a / a - a; if (a == 2) int[] c = 1 ; c[8] = 9; finally Console.WriteLine("A"); catch (IndexOutOfRangeException e) Console.WriteLine("B"); Console.ReadLine();

A.
A
Answer
B.
B
C.
AB
D.
BA

Answer: Option A

Solution

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