Advertisements
Advertisements
प्रश्न
Compare for loop and for each loop.
फरक स्पष्ट करा
उत्तर
for loop | for each loop |
loops through a block of code until the counter reaches a specified number. | loops through a block of code for each element in an array. |
|
|
shaalaa.com
Looping Structure
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
What will be displayed in a browser when the following PHP code is executed:
<?php
for (Scounter = 20; $counter< 10;
$counter++)
{
echo “Welcome to Tamilnadu “;
}
echo “Counter is: Scounter”;
?>
PHP supports which types of looping techniques ______.
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.
What is For each loop in PHP?
List out Looping Structure in PHP.
Write Syntax of For loop in PHP.
Write Syntax of while loop in PHP.
Write Syntax of Do while loop in PHP.
Write the purpose of Looping Structure in PHP.
Explain concepts of for loop with example.