PHP Functions The arguments in a function are evaluated from ..... left to right sometimes left to right and sometimes right to left right to left Always right to left left to right sometimes left to right and sometimes right to left right to left Always right to left ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?echo lcfirst("welcome to India"); welcome to india Welcome to India Welcome to india welcome to India welcome to india Welcome to India Welcome to india welcome to India ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?function a() {function b() {echo 'I am b';}echo 'I am a';}a();a(); I am a Error Error I am bI am a I am b I am a Error Error I am bI am a I am b ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?function mine($m){if ($m < 0)echo "less than 0";if ($ >= 0)echo "Not True";}mine(0); Not True No Output None of the Mentioned Less Than 0 Not True No Output None of the Mentioned Less Than 0 ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?function mine($num){$num = 2 + $num;echo $num;}mine(3); $num 3 5 None of the mentioned $num 3 5 None of the mentioned 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? get_argv() get_argc() func_get_argv() func_get_argc() get_argv() get_argc() func_get_argv() func_get_argc() ANSWER DOWNLOAD EXAMIANS APP