Computer Science, asked by ritamonidas1979, 7 months ago

when does an infinite loop occur in a DO WHILE... LOOP?​

Answers

Answered by NIRALAJI
7

Answer:

by omitting update statement in program

Explanation:

example --

do

{

if( a% 2 )

continue;

System.out.println (a);

}

while ( a<=10);

Similar questions