Advertisements
Advertisements
प्रश्न
To execute a loop 10 times, which of the following is correct?
पर्याय
for (int i=11;i<=30;i+=2)
for (int i=11;i<=30;i+=3)
for (int i=11;i<20;i++)
for (int i=11;i<=21;i++)
MCQ
उत्तर
for (int i=11;i<=30;i+=2)
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);
Which of the following are entry-controlled loops?
- for
- while
- do..while
- switch
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;
}