Advertisements
Advertisements
Question
Loops that iterate for fixed number of times is called ______.
Options
Unbounded loops
Bounded loops
While loops
For loops
MCQ
Fill in the Blanks
Advertisements
Solution
Loops that iterate for fixed number of times is called bounded loops.
shaalaa.com
Looping Structure
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
The loop exclusively used for arrays is _____.
Which loop evaluates condition expression as Boolean, if it is true, it executes statements and when it is false it will terminate?
What will be the output of the following PHP code?
<?php
for ($x = 1; $x < 10;++$x)
{
print “*\t”;
}
?>What will be the output of the following PHP code?
<?php
for ($x = -1; $x < 10;--$x)
{
print $x;
}
?>Write Syntax of For loop in PHP.
Write Syntax of For each loop in PHP.
Write Syntax of while loop in PHP.
Compare for loop and for each loop.
Write the features Looping Structure.
Explain working of loops in array.
