PHP MCQ - English
A PHP script should start with ___ and end with ___:
Home | Discussion ForumFree Online Test
A PHP script should start with ___ and end with ___:
Answer : D
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) What will be the output of the following code?function track()
{
static $count = 0;
$count++;
echo $count;
}
track();
track();
track();
2) Which of the following php statement/statements will store 111 in variable num?
3) What will be the output of the following php code?
$num = "1";
$num1 = "2";
print $num+$num1;
?>
4) Which of the below statements is equivalent to $add += $add ?
5) What will be the output of the following PHP code?$num = 10;
echo 'What is her age? n She is $num years old';
View Answer