Q. What value is stored in the intCount variable when the loop ends?
Code:For intCount As Integer = 4 To 11 Step 2
MessageBox.Show("Hello")
Next intCount
β
Correct Answer: (C)
12
For intCount As Integer = 4 To 11 Step 2
MessageBox.Show("Hello")
Next intCount
You must be Logged in to update hint/solution