Computer Science, asked by shindesamruddhi424, 1 year ago

plz answer the question.....​

Attachments:

Answers

Answered by nishthakashyap2
0

Answer:

loop is a repeating something

Answered by anishasa
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