Basic PHP What will be the output of the following php code?$num = "1";$num1 = "2";print $num+$num1; 12 3 1+2 Error 12 3 1+2 Error ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What is the limit of a PHP integer value? 1048576 2147483647 16384 65536 1048576 2147483647 16384 65536 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP All classes in the same namespace or subnamespace don’t have to the declared in the same PHP file. FALSE TRUE FALSE TRUE ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the following is not valid PHP code? $10_somethings &$something $_10 $aVaR ${“MyVar”} $10_somethings &$something $_10 $aVaR ${“MyVar”} ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Variables always start with a ........ in PHP Euro-sign Yen-sign Dollar-sign Pond-sign Euro-sign Yen-sign Dollar-sign Pond-sign ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Multiple namespaces cannot be defined in the same file. FALSE TRUE FALSE TRUE ANSWER DOWNLOAD EXAMIANS APP