PHP MCQ - English
PHP files have a default file extension of..
Home | Discussion ForumFree Online Test
PHP files have a default file extension of..
.html
.xml
.php
.ph
Answer : C
Free Online Test
View More Related Question
1) A PHP script should start with ___ and end with ___:
2) What will be the output of the following PHP code?$num = 10;
echo 'What is her age? n She is $num years old';
What is her age? n She is $num years old
What is her age? She is $num years old
What is her age? She is 10 years old
What is her age?n She is 10 years old
View Answer
3) Which of the following is/are a PHP code editor?
4) Which of the following PHP statements will output Hello World on the screen?
5) What will be the output of the following php code?
$num = 1;
$num1 = 2;
print $num . "+". $num1;
?>