Sail E0 Webinar
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");     } }
Options:
A .  Exception occured
B .  Program executed
C .  Exception occured Program executed
D .  Program executed Exception occured
Answer: Option C





Submit Your Solution Below and Earn Points !
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers