Question 1  of   20

What is the output of the following code snippet? int n = 1; while (n++ < 4) { Console.Write(n); }

A. 123
B. 012
C. 111
D. 234