VISUAL PROGRAMMING
VISUAL BASIC
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
Given the following code segment:Dim a As Integer = 0 Dim b As Integer = 0 Do While a < 10 b += a Loop Me.lblMessage.Text = b Which output will be displayed?
|
0
|
|
18
|
|
10
|
|
An infinite loop will occur.
|
Explanation:
There is 1 question to complete.