How many times will the string literal Hi appear in the lblMsg control? Dim intCount As Integer

Question:

How many times will the string literal “Hi” appear in the lblMsg control? 

Dim intCount As Integer
Do While intCount > 4
lblMsg.Text = lblMsg.Text &
"Hi" & ControlChars.NewLine
intCount += 1
Loop
a. Zero
b. One
c. Four
d. Five

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Question Posted: