Sail E0 Webinar
Question
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();    } }
Options:
A .  A
B .  B
C .  AB
D .  BA
Answer: Option A





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