Discussion :: C#.Net MCQs
-
What will be the output of the given 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();}}
Answer : Option A
Explanation :
Be The First To Comment