Computer Science, asked by pankajsonam03, 6 months ago

which loop is used when you don,t know how many times the repetition is to be done​

Answers

Answered by Imblank
0

Answer:

do while loop

Read my bio once

Answered by pds39937
2

Explanation:

While loops are typically used when you don't know how many times the loop needs to repeat. The body of the loop will repeat while the condition is true. The logical expression will be evaluated just before the body of the loop is repeated.

Similar questions