Advertisements
Advertisements
Question
Which loop evaluates condition expression as Boolean, if it is true, it executes statements and when it is false it will terminate?
Options
For loop
For each loop
While loop
All of them
MCQ
Solution
All of them.
shaalaa.com
Looping Structure
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
PHP supports which types of looping techniques ______.
What will be the output of the following PHP code?
<?php
for ($x = -1; $x < 10;--$x)
{
print $x;
}
?>
What is For each loop in PHP?
List out Looping Structure in PHP.
Write Syntax of Do while loop in PHP.
Compare for loop and for each loop.
Write the features Looping Structure.
Write short notes on Do while Loop.
Differentiate While and Do while loops.
Explain concepts of for loop with example.