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

Discussion :: C#.Net MCQs

  1. 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();
        }
     }
  2. A.
    A
    B.
    B
    C.
    AB
    D.
    BA

    View Answer

    Workspace

    Answer : Option A

    Explanation :



Be The First To Comment