21.
What will be the output of the following PHP code?

<?php
$x = 5;
echo $x--;
echo $x;
?>
22.
What will be the result of the expression "Hello" . " World" in PHP?
23.
Which of the following PHP functions is used to find the length of an array?