What will be output for the given code?

Q

What will be output for the given code?

✍: Guest

A

What will be output for the given code?

Dim I as integer = 5
Do
I = I + 2
Response.Write (I & " ")
Loop Until I > 10

* 5 8
* 5 7 9
* 7 9 11
* Errors out


7 9 11 (if corrected)

2014-09-02, 1440👍, 0💬