Basic PHP Under what circumstance is it impossible to assign a default value to a parameter while declaring a function? When the parameter is Boolean When the function is being declared as a member of a class When the parameter is being declared as passed by reference Never When the function contains only one parameter When the parameter is Boolean When the function is being declared as a member of a class When the parameter is being declared as passed by reference Never When the function contains only one parameter ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$a = "clue";$a .= "get";echo "$a"; get clueget true false get clueget true false ANSWER DOWNLOAD EXAMIANS APP
Basic PHP String values must be enclosed in ...... double quotes none of above single quotes both A and B double quotes none of above single quotes both A and B ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$total = "25 students";$more = 10;$total = $total + $more;echo "$total"; 35 students 25 students 35 Error 35 students 25 students 35 Error ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Variables always start with a ........ in PHP Yen-sign Pond-sign Dollar-sign Euro-sign Yen-sign Pond-sign Dollar-sign Euro-sign ANSWER DOWNLOAD EXAMIANS APP
Basic PHP PHP considers the following values as False both A and B constant NULL the one-character string 0 All of Above the integer 0 both A and B constant NULL the one-character string 0 All of Above the integer 0 ANSWER DOWNLOAD EXAMIANS APP