Advertisements
Advertisements
प्रश्न
Write the features Looping Structure.
टीपा लिहा
Advertisements
उत्तर
Looping Structures are useful for writing iteration logics.
It is the most important feature of many programming languages, including PHP.
They are implemented using the following categories.
- for loop
- while loop
- do-while loop
- for each loop
shaalaa.com
Looping Structure
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
The loop exclusively used for arrays is _____.
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 “*\t”;
}
?>What is For each loop in PHP?
Write Syntax of Do while loop in PHP.
Write short notes on Do while Loop.
Differentiate While and Do while loops.
Explain Looping Structure in PHP.
Discuss in detail about Foreach loop.
Explain the process Do while loop.
