Which block of code ends with the variable i equal to 5 and the variable X equal to 10?
:
Sub Loopi() Dim X As Integer, i As Integer For i = 1 To 5 X = X + 1 Next I End Sub
Sub Loopi() Dim X As Integer, i As Integer Do X = X + 1 i = i + 1 Loop While i < 5 End Sub
Sub Loopi() Dim X As Integer, i As Integer Do Until i < 5 X = X + 1 i = i + 1 Loop End Sub
Do X = X + 1 i = i + 1 Loop Until i < 5 End Sub