Revature Interview Question

What is a do-while loop?

Interview Answer

Anonymous

Dec 10, 2020

Its similar to the while loop except for the fact that the do statement executes at least once, then it will execute the while expression until it is false

2