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 parameter is Boolean When the function contains only one parameter When the parameter is being declared as passed by reference Never When the function is being declared as a member of a class When the parameter is Boolean When the function contains only one parameter When the parameter is being declared as passed by reference Never ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the below symbols is a newline character? \r \n /n /r \r \n /n /r ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$a = "clue";$a .= "get";echo "$a"; false get true clueget false get true clueget 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. TRUE FALSE TRUE FALSE ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the following is not valid PHP code? &$something $10_somethings $_10 $aVaR ${“MyVar”} &$something $10_somethings $_10 $aVaR ${“MyVar”} ANSWER DOWNLOAD EXAMIANS APP