Question 1  of   8

How many times will the loop body execute? try { byte n = byte.MaxValue; while (n <= byte.MaxValue) { unchecked { ++n; } } } catch (Exception ex) { Console.Write(ex.GetType().Name); }

A. 255
B. 0
C. 1
D. Infinite