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 PHP does not support numbers written in hexadecimal, octal or scientific notation. False True False True ANSWER DOWNLOAD EXAMIANS APP
Basic PHP The value of __NAMESPACE__ is a string that contains the current namespace name. In global, un-namespaced code, it contains . . . . . . NULL an empty string gibberish value 0 NULL an empty string gibberish value 0 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 function is being declared as a member of a class When the function contains only one parameter When the parameter is being declared as passed by reference Never When the parameter is Boolean When the function is being declared as a member of a class When the function contains only one parameter When the parameter is being declared as passed by reference Never When the parameter is Boolean ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$a = 5;$b = 5;echo ($a === $b); 1 False Error 5 === 5 1 False Error 5 === 5 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP String values must be enclosed in ...... both A and B none of above single quotes double quotes both A and B none of above single quotes double quotes ANSWER DOWNLOAD EXAMIANS APP