PHP MCQ - English
PHP files have a default file extension of..
Home | Discussion ForumPHP files have a default file extension of..
.html
.xml
.php
.ph
Answer : C
Free Online Test
View More Related Question
1) PHP files have a default file extension of..
2) What will be the output of the following php code?
$num = "1";
$num1 = "2";
print $num+$num1;
?>
3) Which of the below symbols is a newline character?
4) What will be the output of the following php code?
$num = 1;
$num1 = 2;
print $num . "+". $num1;
?>
5) Which of the following PHP statements will output Hello World on the screen?