PHP online quiz

PHP Online Quiz

PHP online quiz

Test your coding prowess in our Ultimate Programming PHP Online QUIZ with Total 10 Questions.

Whether you're a seasoned developer or just dipping your toes into the programming world, challenge yourself with a range of questions spanning languages like Python, Java, and more.

Are you ready to conquer the coding conundrums? Put on your thinking hat and dive into the quiz now!

Name
Email
1. 
PHP recognizes constructors by the name _________

2. 
The developers of PHP deprecated the safe mode feature as of which PHP version?

3. 
If $a = 12 what will be returned when ($a == 12) ? 5 : 1 is executed?

4. 
What will be the output of the following Program ?

<?php

$php = array("Array", "Function", "Strings", "File");
echo pos($php);
?>

5. 
Which PHP function displays the web page’s most recent modification date?

6. 
Multi-line comments can be written within the ____.

7. 
Which is not a valid variable name in PHP?

8. 
What will be the output of the below code snippet?

<?php

$x = 5;
Β 
function myFunction(){
Β  Β  echo "Result $x";
}
myFunction();
?>

9. 
Which statement will output $lfc on the screen?

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

<?php

$x = 8;
$y = 8.0;
echo ($x === $y);
?>