Basic PHP What will be the output of the following PHP code?$a = 5;$b = 5;echo ($a === $b); False 1 5 === 5 Error False 1 5 === 5 Error ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which statement will output $x on the screen? echo “/$x”; echo “$$x”; echo “\$x”; echo “$x;”; echo “/$x”; echo “$$x”; echo “\$x”; echo “$x;”; ANSWER DOWNLOAD EXAMIANS APP
Basic PHP String values must be enclosed in ...... none of above single quotes double quotes both A and B none of above single quotes double quotes both A and B ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the below symbols is a newline character? \n \r /n /r \n \r /n /r ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$color = "maroon";$var = $color[2];echo "$var"; r a $var Error r a $var Error ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$score = 1234;$scoreboard = (array) $score;echo $scoreboard[0]; 1234 Error 2 1 1234 Error 2 1 ANSWER DOWNLOAD EXAMIANS APP