VISUAL BASIC

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?
A
0
B
18
C
10
D
An infinite loop will occur.
Explanation: 
There is 1 question to complete.