Welcome to Questionaries, where you can ask questions and receive answers from other members of the community.

Let us know at info@questionaries.org

What will be output for the given code?

3 like 0 dislike
What will be output for the given code?

please tell me.........
asked 1 year ago by marck_don (191,010 points)

1 Answer

1 like 0 dislike
 
Best answer
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)
answered 1 year ago by daneim (127,080 points)

Related questions

2 like 0 dislike
1 answer
10 like 0 dislike
1 answer
8 like 0 dislike
1 answer
12 like 0 dislike
1 answer