Question 1  of   8

What is the output of the program below? int i = 0; try { while(true) { if (++i >= 3) { return; } } } catch { } finally { Console.Write(i); }

A. 0
B. [No output]
C. 4
D. 3