Question 1  of   13

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. 0
B. 255
C. Infinite
D. 1