11.
What will be the result of the expression 10 % 3 in PHP?
12.
What does the following PHP code output?

<?php
$x = "10";
$y = 20;
echo $x + $y;
?>
13.
What is the purpose of the following PHP function?

strlen("Hello")
14.
Which of the following is a correct way to increment the value of a variable $count by 1 in PHP?
15.
Which of the following statements is true about PHP comments?
16.
What will be the output of the following PHP code?

<?php
$x = 10;
echo ++$x;
?>
17.
What will be the value of the variable $result after executing the following PHP code?

<?php
$x = 5;
$result = ($x > 10) ? "Yes" : "No";
?>
18.
Which of the following PHP functions is used to convert a string to uppercase?
19.
What will be the output of the following PHP code?

<?php
$x = 5;
$y = 10;
echo "The sum is: " . ($x + $y);
?>
20.
What is the purpose of the following PHP code?

<?php
$colors = array("Red", "Green", "Blue");
foreach ($colors as $color) {
echo $color . "
";
}
?>