Q. How many times will the MessageBox.Show method in the following code be processed?
Code:
intCount =0
Do While intCount > 3
MessageBox.Show("Hello")
intCount = intCount + 1
Loop
β
Correct Answer: (A)
0