Question 1  of   10

What is the output of the program below? try { int a = 0, b = a; if (b == 0) { throw new ArgumentOutOfRangeException(); } Console.Write(">try"); } catch { Console.Write(">catch"); } finally { Console.Write(">finally"); }

A. >try
B. >try>catch>finally
C. >catch>finally
D. >catch
E. >finally