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
What will be displayed in a browser when the following PHP code is executed;
<?php
for ($counter = 10; $counter < 10;
$counter = $counter + 5){
echo “Hello”;
}
?>PHP supports which types of looping techniques ______.
What is For each loop in PHP?
Write Syntax of For loop in PHP.
Write Syntax of while loop in PHP.
Compare for loop and for each loop.
Explain the use of for each loop in PHP.
Write the features Looping Structure.
Explain the process Do while loop.
Explain working of loops in array.
