
PHP
Quiz by Angkol
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
What is PHP?
Who is the father of PHP?
What does PHP stand for?
Which of the following is the correct syntax to write a PHP code?
Which of the following is the correct way to add a comment in PHP code?
Which of the following is the default file extension of PHP files?
How to define a function in PHP?
What will be the output of the following PHP code?
<?php
$x = 10;
$y = 20;
if ($x > $y && 1||1)
print "1000 PHP MCQ" ;
else print "Welcome to Sanfoundry";
?>
Which is the right way of declaring a variable in PHP?
What will be the output of the following PHP program?
<?php
$fruits = array ("apple", "orange", array ("pear", "mango"),"banana");
echo (count($fruits, 1));
?>