Q. What value is stored in the count variable when the loop ends?
Code:For count As Integer = 5 to 9 Step 5
MessageBox.Show("Hi")
Next count
β
Correct Answer: (A)
10
For count As Integer = 5 to 9 Step 5
MessageBox.Show("Hi")
Next count
You must be Logged in to update hint/solution