11.
What is the purpose of the PHP phpinfo() function?
12.
Which of the following PHP directives is used to set the maximum execution time of a script?
13.
What is the output of the following code? <?php $a = 10; $b = 5; echo ($a > $b) ? "Yes" : "No"; ?>
14.
Which PHP function is used to check if a file exists in PHP?
15.
What does the $_POST superglobal array contain in PHP?
16.
Which of the following statements correctly assigns the value "John" to the variable $name in PHP?
17.
What is the output of the following code? <?php for ($i = 0; $i < 3; $i++) { echo $i . ", "; } ?>
18.
Which PHP function is used to output content as HTML entities, preventing cross-site scripting (XSS) attacks?
19.
Which of the following statements is true about PHP's include and require functions?