Discussion :: C#.Net MCQs
-
What would be the output of given code snippet? class Program{static void Main(string[] args){int i;int v = 40;int[] x = new int[5];try{Console.WriteLine(" Enter the number: ");index = Convert.ToInt32(Console.ReadLine());x[index] = v;}catch(Exception e){Console.WriteLine("Exception occured");}Console.WriteLine("Program executed");}}
A.
Exception occured
|
B.
Program executed
|
C.
Exception occured Program executed
|
D.
Program executed Exception occured
|
Answer : Option C
Explanation :
Be The First To Comment