Basic PHP Multiple namespaces cannot be defined in the same file. TRUE FALSE TRUE FALSE ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Variables always start with a ........ in PHP Pond-sign Euro-sign Dollar-sign Yen-sign Pond-sign Euro-sign Dollar-sign Yen-sign ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$user = array("Ashley", "Bale", "Shrek", "Blank");for ($x=0; $x < count($user); $x++){if ($user[$x] == "Shrek")continue;printf ($user[$x]);} AshleyBale Shrek ShrekBlank AshleyBaleBlank AshleyBale Shrek ShrekBlank AshleyBaleBlank ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the below namespace declaration is correct? namespace ORA: namespace 1_RA; namespace ORA_#; namespace ORA; namespace ORA: namespace 1_RA; namespace ORA_#; namespace ORA; ANSWER DOWNLOAD EXAMIANS APP
Basic PHP PHP files have a default file extension of_______. .php .html .xml .ph .php .html .xml .ph ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$color = "maroon";$var = $color[2];echo "$var"; a Error $var r a Error $var r ANSWER DOWNLOAD EXAMIANS APP