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);
?>