PHP MCQ - English
PHP files have a default file extension of..
Home | Discussion ForumFree Online Test
PHP files have a default file extension of..
Answer : C
Feel free to find and hire your online essay writer to help you with papers. AdvancedWriters will not let you down.
Free Online Test
View More Related Question
1) Which of the following PHP statements will output Hello World on the screen?
2) What will be the output of the following code?
$foo = 'Bob';
$bar = &$foo;
$bar = "My name is $bar";
echo $bar;
echo $foo;
?>
3) Which of the below symbols is a newline character?
4) Which of following variables can be assigned a value to it?
5) What will be the output of the following php code?
$num = 1;
$num1 = 2;
print $num . "+". $num1;
?>