PHP Functions What will be the output of the following PHP code?echo hex2bin("48656c6c6f20576f726c6421"); This is PHP! Hello World! welcome to india MCQ questons This is PHP! Hello World! welcome to india MCQ questons ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?function do($myString) {echo strpos($myString, "donkey",0);}do("The donkey looks like a horse."); 5 None of the mentioned 4 2 5 None of the mentioned 4 2 ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?$x = 75;$y = 25;function addition(){$GLOBALS['z'] = $GLOBALS['x'] + $GLOBALS['y'];}addition();echo $z; 25 75 error 100 25 75 error 100 ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?function time($string){echo strtr("Towe Pa55", "ow5", $string);}time("ims"); Time Pa55 Towe Pa55 Time Pass Towe Pass Time Pa55 Towe Pa55 Time Pass Towe Pass 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 10 None of the Mentioned Error No Output 10 None of the Mentioned Error ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?function _func(){echo "Hello World";}_func(); Hello World No Output ERROR None of the mentioned Hello World No Output ERROR None of the mentioned ANSWER DOWNLOAD EXAMIANS APP