Mini-Exercise #4 -- Answer
v What does this code print?
Dim i As Integer
i = 1
Do While i >= 1
   Print i
   i = i + 1
loop
1
2
3
4
5
6
….
This is an infinite loop!