11.
Which PHP control structure is used to execute a block of code multiple times, each time with a different value in a specified range?
12.
What is the output of the following PHP code?

<?php
for ($i = 1; $i <= 3; $i++) {
echo "The number is: $i
";
}
?>
13.
Which PHP control structure is used to evaluate multiple conditions and execute a block of code based on the first condition that is true?
14.
What is the purpose of the break statement in PHP?
15.
What is the output of the following PHP code?

<?php
$x = 1;
while ($x <= 3) {
echo "The number is: $x
";
$x++;
if ($x == 2) {
break;
}
}
?>
16.
Which PHP control structure is used to execute a block of code repeatedly for a specified number of times?
17.
What is the output of the following PHP code?

<?php
$x = 0;
while ($x < 3) {
echo "The number is: $x
";
$x++;
}
?>
18.
Which PHP control structure is used to execute a block of code based on the evaluation of a condition?
19.
What is the purpose of the continue statement in PHP?
20.
What will be the output of the following PHP code?

<?php
for ($i = 1; $i <= 5; $i++) {
if ($i == 3) {
continue;
}
echo "The number is: $i
";
}
?>