Advertisements
Advertisements
Question
State the type of loop in the given program segment
for (int i = 5; i l = 0; i =2)
System.out.println(i);
Options
finite
null
infinite
fixed
MCQ
Solution
infinite
Explanation:
The for loop will never terminate, as the values of 1 will be : 5, 3, 1, - 1 ... and will never reach 0.
shaalaa.com
Entry Controlled Loop
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
Which of the following are entry-controlled loops?
- for
- while
- do..while
- switch
To execute a loop 10 times, which of the following is correct?
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;
}