PHP Functions What will be the output of the following PHP code ?function _func(){echo "Hello World";}_func(); ERROR Hello World No Output None of the mentioned ERROR Hello World No Output None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
PHP Functions A function in PHP which starts with ______ (double underscore) is know as. Inbuilt Function User Defined Function Magic Function Default Function Inbuilt Function User Defined Function Magic Function Default Function ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?$var = 10;function one(){echo $var;}one(); No Output None of the Mentioned Error 10 No Output None of the Mentioned Error 10 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 this worksthis too works error this works this works this too works this worksthis too works error ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Which one of the following functions can be used to compress a string? zip_compress() zip() gzcompress() compress() zip_compress() zip() gzcompress() compress() ANSWER DOWNLOAD EXAMIANS APP
PHP Functions . . . . . converts the keys of an array into values and the values into keys. array_transpose() array_flip() array_flips() array_trans() array_transpose() array_flip() array_flips() array_trans() ANSWER DOWNLOAD EXAMIANS APP