What value is stored in the intNum variable when the loop ends?
For intNum As Integer = 5 To 1 Step -1
MessageBox.Show("Hi")
Next intNum
For intNum As Integer = 5 To 1 Step -1
MessageBox.Show("Hi")
Next intNum
A. 0
B. 1
C. 2
D. 3
Answer: Option A

Join The Discussion