What would be the output produced from the following statements? int aValue = 1; do { aValue++;

Question:

What would be the output produced from the following statements?

int aValue = 1;

do

{

aValue++;

Console.Write(aValue++);

} while (aValue < 3);

a. 23

b. 234

c. 1234

d. 2

e. none of the above

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Question Posted: