PHP Functions What will be the output of the following PHP code?function a() {function b() {echo 'I am b';}echo 'I am a';}b();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 Which of the following PHP functions can be used for generating unique id’s? id() mdid() uniqueid() md5() id() mdid() uniqueid() md5() ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?function 2myfunc(){echo "Hello World";}2myfunc(); ERROR No Output Hello World None of the mentioned ERROR No Output Hello World 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? func_get_argc() get_argc() func_get_argv() get_argv() func_get_argc() get_argc() func_get_argv() get_argv() ANSWER DOWNLOAD EXAMIANS APP
PHP Functions phpinfo() will display about?1. OS version information2. PHP installation3. Variables4. HTTP headers All listed here Option 2 Option 4 Option 1 All listed here Option 2 Option 4 Option 1 ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?echo ord ("hi"); 106 103 104 209 106 103 104 209 ANSWER DOWNLOAD EXAMIANS APP