Basic PHP Which of the following is not valid PHP code? ${“MyVar”} $10_somethings $aVaR $_10 &$something ${“MyVar”} $10_somethings $aVaR $_10 &$something 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 What is the limit of a PHP integer value? 1048576 16384 65536 2147483647 1048576 16384 65536 2147483647 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Some PHP code might not have a namespace and therefore lives in the . . . . . . namespace. Default PRE Global Automatic Default PRE Global Automatic ANSWER DOWNLOAD EXAMIANS APP
Basic PHP When a simple data type is casted to an array, an array is created with the original value in the first element. True False True False ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following php code?$num = "1";$num1 = "2";print $num+$num1; 3 Error 1+2 12 3 Error 1+2 12 ANSWER DOWNLOAD EXAMIANS APP