Advertisements
Advertisements
प्रश्न
Which of the following are entry-controlled loops?
- for
- while
- do..while
- switch
विकल्प
Only 1
1 and 2
1 and 3
3 and 4
MCQ
उत्तर
1 and 2
Explanation:
The for loop and while loop are entry-controlled loops that check the condition before entering the loop body.
shaalaa.com
Entry Controlled Loop
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
State the type of loop in the given program segment
for (int i = 5; i l = 0; i =2)
System.out.println(i);
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;
}