Basic PHP Multiple namespaces cannot be defined in the same file. FALSE TRUE FALSE TRUE ANSWER DOWNLOAD EXAMIANS APP
Basic PHP String values must be enclosed in ...... both A and B single quotes double quotes none of above both A and B single quotes double quotes none of above ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Variables always start with a ........ in PHP Dollar-sign Yen-sign Pond-sign Euro-sign Dollar-sign Yen-sign Pond-sign Euro-sign ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the following is not valid PHP code? &$something $aVaR ${“MyVar”} $10_somethings $_10 &$something $aVaR ${“MyVar”} $10_somethings $_10 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 What will be the output of the following php code?$num = "1";$num1 = "2";print $num+$num1; 12 Error 3 1+2 12 Error 3 1+2 ANSWER DOWNLOAD EXAMIANS APP