plz answer the question.....
Attachments:
![](https://hi-static.z-dn.net/files/d71/7647e4bf9108c135b815a67f2f91d404.jpg)
Answers
Answered by
0
Answer:
loop is a repeating something
Answered by
0
While(true)
System.out.println("*") infinite loop
Answer
for(;;)
System.out.print("*");
for (initialization; test-condition; update)
for (;;) is an infinite loop because there is no test condition
To stop the loop by pressing Ctrl+C or a break statement in the body of the loop
Similar questions