which loop is used when you don,t know how many times the repetition is to be done
Answers
Answered by
0
Answer:
do while loop
Read my bio once
Answered by
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