PHP Functions Returning values from functions may include ..... None of above Objects Arrays Both A & B None of above Objects Arrays Both A & B ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Which one of the following PHP functions can be used to build a function that accepts any number of arguments? func_get_argc() get_argc() get_argv() func_get_argv() func_get_argc() get_argc() get_argv() func_get_argv() ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?function calc($num1, $num2){$total = $num1 * $num2;return $total; }$result = calc(42, 0);echo $result; 0 Error 84 42 0 Error 84 42 ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?function one() {echo " this works";function two() {echo "this too works";}}one();two(); this works this works this too works error this worksthis too works this works this works this too works error this worksthis too works ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?function do($myString) {echo strpos($myString, "donkey",0);}do("The donkey looks like a horse."); None of the mentioned 4 5 2 None of the mentioned 4 5 2 ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Above usleep() function pauses PHP for .usleep(1000000); 1 second 10 seconds 100 microseconds 1 microseconds 1 second 10 seconds 100 microseconds 1 microseconds ANSWER DOWNLOAD EXAMIANS APP