Interview Questions

What will be output for the given code?

ASP.NET and .NET WEB Questions and Answers


(Continued from previous question...)

What will be output for the given code?

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)

Other Interview Questions