PHP Functions Above usleep() function pauses PHP for .usleep(1000000); 1 microseconds 10 seconds 1 second 100 microseconds 1 microseconds 10 seconds 1 second 100 microseconds 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 b I am a Error Error I am bI am a I am b I am a Error Error I am bI am a ANSWER DOWNLOAD EXAMIANS APP
PHP Functions The arguments in a function are evaluated from ..... left to right sometimes left to right and sometimes right to left Always right to left right to left left to right sometimes left to right and sometimes right to left Always right to left right to left ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Which of the following are valid function names?1. function()2. €()3. .function()4. $function() None of the mentioned Only 2 3 and 4 All of the mentioned None of the mentioned Only 2 3 and 4 All of the mentioned ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?$var = 10;function one(){echo $var;}one(); 10 None of the Mentioned No Output Error 10 None of the Mentioned No Output Error 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