Basic PHP Under what circumstance is it impossible to assign a default value to a parameter while declaring a function? Never When the function contains only one parameter When the parameter is being declared as passed by reference When the function is being declared as a member of a class When the parameter is Boolean Never When the function contains only one parameter When the parameter is being declared as passed by reference When the function is being declared as a member of a class When the parameter is Boolean ANSWER DOWNLOAD EXAMIANS APP
Basic PHP PHP files have a default file extension of_______. .php .ph .xml .html .php .ph .xml .html ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What is the limit of a PHP integer value? 1048576 16384 65536 2147483647 1048576 16384 65536 2147483647 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$a = "clue";$a .= "get";echo "$a"; clueget false get true clueget false get true 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 What will be the output of the following php code?$num = "1";$num1 = "2";print $num+$num1; 3 12 1+2 Error 3 12 1+2 Error ANSWER DOWNLOAD EXAMIANS APP