PHP Functions Above usleep() function pauses PHP for .usleep(1000000); 100 microseconds 1 second 1 microseconds 10 seconds 100 microseconds 1 second 1 microseconds 10 seconds ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?function constant(){define("GREETING", "Welcome to Narnia");echo greeting;} GREETING Welcome to Narnia greeting ERROR GREETING Welcome to Narnia greeting ERROR ANSWER DOWNLOAD EXAMIANS APP
PHP Functions The below statement will return.$Var = substr(""abcdef"", -4, 1); returns "cd" returns "c" returns "f" returns "d" returns "cd" returns "c" returns "f" returns "d" ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?function TV($string){echo "my favourite TV show is ".$string;function b() {echo " I am here to spoil this code";}}function b(){echo " I am here to spoil this code";}b();TV("Sherlock"); I am here to spoil this code My favourite TV show isI am here to spoil this code None of the mentioned Error I am here to spoil this code My favourite TV show isI am here to spoil this code None of the mentioned Error ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?echo hex2bin("48656c6c6f20576f726c6421"); MCQ questons welcome to india This is PHP! Hello World! MCQ questons welcome to india This is PHP! Hello World! ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?function b() {echo "b is executed";}function a(){b();echo "a is executed";b();}a(); b is executeda is executedb is executed a is executed b is executedb is executedb is executed b is executeda is executed b is executeda is executedb is executed a is executed b is executedb is executedb is executed b is executeda is executed ANSWER DOWNLOAD EXAMIANS APP