What is the minimum number of times a do while loop will run?
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.