+ 1
What is meant by a loop?
6 odpowiedzi
+ 6
it repeats itself like a circle, until the condition is false
+ 4
"loop is a sequence of instruction s that is continually repeated until a certain condition is reached"
http://whatis.techtarget.com/definition/loop
+ 3
Running same set of instructions repetitively as long as the condition is True.
+ 2
something that is repeated for as long as a certain condition(s) hold true
0
loop is addressed to a set of instructions that are to be repeated untill and unless the statements are true and once the condition becomes false the loop breaks and the program is continued with no difficulty
0
Loop means doing a certain work repeatedly as long as it full fills the requirments. Loop can make our work easier.