PHP MCQ - English
Which of the below symbols is a newline character?
Home | Discussion ForumFree Online Test
Which of the below symbols is a newline character?
r
n
/n
/r
Answer : B
Free Online Test
View More Related Question
1) Which of the conditional statements is/are supported by PHP?
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 statement will output $x on the screen?
4) What will be the output of the following PHP code?$a = "clue";
$a .= "get";
echo "$a";
5) What will be the output of the following php code?
$num = "1";
$num1 = "2";
print $num+$num1;
?>