What can you tell me about while and do while loops?

A while loop repeats a code block for as long as its run condition is trueWhile loops and do while loops differ in the time they check the conditionDo while loops run at least onceWhile loops repeat a code block for a few seconds

Great! They both run for as long as their run condition is true but do while loops check the condition at the end of the block and, therefore, run at least once.

Oh noes! They both run for as long as their run condition is true but do while loops check the condition at the end of the block and, therefore, run at least once.