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
lblMsg.Text = lblMsg.Text &
"Hi" & ControlChars.NewLine
intCount += 1
Loop While intCount > 4

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: