Computer Science, asked by siddardayerramsetti, 7 months ago

3. Which of the following loops will execute the body of the loop even
when the condition controlling the loop is initially false?
O for
O step loop
O While
O do-while​

Answers

Answered by Oreki
2

A Do-While loop will execute the body of the loop even when the condition controlling the loop is initially false.

Answered by Anonymous
0

while loop is executed once before the condition is checked. Its syntax is: do { // body of loop; } while (condition); ... If the condition evaluates to true , the body of the loop inside the do statement is executed again.

Similar questions