Home / CSE MCQs / C#.Net MCQs :: Discussion

Discussion :: C#.Net MCQs

  1. 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");
         }
     }
  2. A.
    Exception occured
    B.
    Program executed
    C.
    Exception occured Program executed
    D.
    Program executed Exception occured

    View Answer

    Workspace

    Answer : Option C

    Explanation :



Be The First To Comment