What is the minimum number of times a do while loop will run?

1099

Perfect! Do while loops check the condition at the end of the first iteration, so the code block will always run at least once.

Shoot. Do while loops check the condition at the end of the first iteration, so the code block will always run at least once.