What is a loop what mean by loop | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is a loop what mean by loop

How is work 🙏🙏

18th Sep 2019, 1:13 PM
Vicky Maurya
Vicky Maurya - avatar
5 Answers
+ 2
Loop is a process that doesn't ends. Means when a process start and go to the end it will again will start, then again go to the end and so on.... infinitely.
18th Sep 2019, 2:17 PM
Shubham Sharma
Shubham Sharma - avatar
+ 2
Basically, loop is a sequence of statements that are excecuted until the desired condition is reached
8th Oct 2019, 4:48 PM
Ronak Paul
Ronak Paul - avatar
+ 1
Loop is like a function that goes over and over again until some condition not vaild.
18th Sep 2019, 1:16 PM
KfirWe
KfirWe - avatar
+ 1
Thanks you 👌👌
18th Sep 2019, 1:19 PM
Vicky Maurya
Vicky Maurya - avatar
0
loop from the word itself , continuously executing the specific line of codes until the condition is false. Iteration , example you need to display 1 to 100 instead of writing it manually 1 from 100 you can use looping . for(int i = 1;i <= 100;i++) display i
18th Sep 2019, 1:24 PM
John Nehry C. Dedoro
John Nehry C. Dedoro - avatar