How many times will the MessageBox.Show method in the following code be processed?
Dim intCount As Integer
Do While intCount > 3
MessageBox.Show("Hello")
intCount = intCount + 1
Loop
a. 0
b. 1
c. 3
d. 4
Do
intCount += 1
Loop While intCount > 3
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here