Advertisements
Advertisements
Question
How many times will the following loop execute? Write the output of the code:
int x=10;
while(true) {
System.out.println(x++*2);
if(x%3==0)
break;
}
One Line Answer
Solution
Loop is executed two times
20
22
shaalaa.com
Entry Controlled Loop
Is there an error in this question or solution?