PHP Functions What will be the output of the following PHP code?echo ucwords("i love all country"); I love all Country I love all country i love all Country I Love All Country I love all Country I love all country i love all Country I Love All Country ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?function mine($m){if ($m < 0)echo "less than 0";if ($ >= 0)echo "Not True";}mine(0); Not True None of the Mentioned No Output Less Than 0 Not True None of the Mentioned No Output Less Than 0 ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?function start($string){if ($string < 45)return 20;elsereturn 40;}$t = start(90);if ($t < 20){echo "Have a good day!";}else{echo "Have a good night!";} None of the mentioned Have a good night! Have a good day! ERROR None of the mentioned Have a good night! Have a good day! ERROR ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Returning values from functions may include ..... Objects Both A & B None of above Arrays Objects Both A & B None of above Arrays ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?$str = "Hello World";echo wordwrap($str,5,"n"); Hello World Hell 0 Wo rld HelloWorld World Hello World Hell 0 Wo rld HelloWorld World ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?function sayHello() {echo "HelloWorld";}$function_holder = "sayHello";$function_holder(); No Output sayHello HelloWorld Error No Output sayHello HelloWorld Error ANSWER DOWNLOAD EXAMIANS APP