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 Which one of the following functions can be used to compress a string? zip_compress() compress() gzcompress() zip() zip_compress() compress() gzcompress() zip() ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Which of the following PHP functions can be used for generating unique id’s? uniqueid() id() md5() mdid() uniqueid() id() md5() mdid() ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code ?function calc($num1, $num2){$total = $num1 * $num2;return $total; }$result = calc(42, 0);echo $result; Error 0 42 84 Error 0 42 84 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); No Output Less Than 0 Not True None of the Mentioned No Output Less Than 0 Not True None of the Mentioned ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?define("GREETING","Hello you! How are you today?");echo constant("GREETING"); “GREETING”,”Hello you! How are you today?” Hello you! How are you today? GREETING, Hello you! How are you today? GREETING “GREETING”,”Hello you! How are you today?” Hello you! How are you today? GREETING, Hello you! How are you today? GREETING ANSWER DOWNLOAD EXAMIANS APP