Basic PHP With the introduction of namespaces, the same function name can be used in multiple places. TRUE FALSE TRUE FALSE ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$a = 5;$b = 5;echo ($a === $b); 5 === 5 1 False Error 5 === 5 1 False Error ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Under what circumstance is it impossible to assign a default value to a parameter while declaring a function? When the parameter is being declared as passed by reference When the parameter is Boolean When the function contains only one parameter When the function is being declared as a member of a class Never When the parameter is being declared as passed by reference When the parameter is Boolean When the function contains only one parameter When the function is being declared as a member of a class Never ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Some PHP code might not have a namespace and therefore lives in the . . . . . . namespace. Automatic Default PRE Global Automatic Default PRE Global ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Variables always start with a ........ in PHP Yen-sign Euro-sign Dollar-sign Pond-sign Yen-sign Euro-sign Dollar-sign Pond-sign ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following php code?$num = "1";$num1 = "2";print $num+$num1; 1+2 3 Error 12 1+2 3 Error 12 ANSWER DOWNLOAD EXAMIANS APP