Advertisements
Advertisements
प्रश्न
PHP supports which types of looping techniques ______.
पर्याय
for loop
while loop
foreach loop
all the above
MCQ
रिकाम्या जागा भरा
Advertisements
उत्तर
All the above
shaalaa.com
Looping Structure
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
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?
Consider the following code
<? php
$count=12;
do{
printf(“%d squared=%d<br/>”,
$count, pow($count,2));
} while($count<4);
?>
What will be the output of the code.
Define Looping Structure in PHP.
Define 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.
Differentiate While and Do while loops.
Explain Looping Structure in PHP.
