Question 1  of   4

What is the output of the following code snippet? int max = 10; for (int i = 1; i < 10; i++) { Debug.WriteIf(i < max/i , i); }

A. [Blank Output]
B. 123
C. 3456789
D. 12