When should you e a for loop? When should you e a do-while loop? When should you e a while loop? 1) When you know the number of iterations and want to execute a block of code multiple times 2) When you want to execute a block of code at least once and then continue looping as long as a certain condition is true 3) When you want to execute a block of code as long as a certain condition is true