How many times will a do while loop run if the while condition is false?

It'll be an infinite loopIt'll run onceIt'll run twiceIt will never run

Wow good job. A do while loop checks the condition at the end of the loop, so even if it is false it will always run once.

No sorry. A do while loop checks the condition at the end of the loop, so even if it is false it will always run once.