Q. How many times will the MessageBox.Show method in the following code be processed?
Code:
For count As Integer = 5 to 9 Step 5
MessageBox.Show("Hi")
Next count
β
Correct Answer: (B)
1