Question 1  of   8

What will be the output of the following code? try { byte n = byte.MaxValue; unchecked { Console.Write(++n); } } catch (Exception ex) { Console.Write(ex.GetType().Name); }

A. 0
B. 255
C. OverflowException
D. 256