How many times will a do
while
loop run if the while condition is false?
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.