what is while loops?
Answers
Answered by
2
In most computer programming languages, a while loop is a control flow statement that allows code to be executed repeatedly based on a given Boolean condition. The while loop can be thought of as a repeating if statement.
rawnysrwt30:
dıfferent between whıle and for loop
Answered by
4
A while loopis one of the most common type of loop. The main Characteristic of a while loop is that it will repeat set of instruction based on a condotion. As far as the loop returns a boolean value of True, the code inside it will keep repeating.We use this kind of loop when we don't know tje exact number if time a code needs to be executed.
plz mark as the brainlist
Similar questions