Computer Science, asked by shamiq5641, 9 months ago

A loop can be infinite (continue forever) or conditional (stops upon a condition). True or false?

Answers

Answered by vachanSD
0

Answer:

true

pls rate me and follow me

Answered by ana2332
1

Answer:

it is true...a loop can be infinite

Explanation:

for example :

class prg

{

public void main ()

{

int s=0;

for(;;)

{ s=s+1;

System.out.print(s);

}}}

Similar questions