adplus-dvertising
frame-decoration

Question

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

Posted under C# programming

Answer: (c).Exception occured
Program executed

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What would be the output of given code snippet?