Computer Science, asked by noorsran01, 1 month ago

In___loops,the control conditions are tested ofter the body of loop
Answer

Answers

Answered by NotThareesh
1

Answer:

Do-While Loops

Explanation:

In a do-while loop, the body of a loop is always executed at least once. After the body is executed, it checks the condition. If the condition is true, then it will again execute the body of a loop otherwise the programs exits the loop.

Similar questions