In a Do Until loop, with a condition (such as a certain variable is greater than 1), at what point does the do Until loop stop? Does it stop at the beginning of the iteration when the condition is met (and thus does not implement actions below it once the condition is met) or does it see that the condition is met, run the loop once more, and then quit?