PHP Functions Which one of the following functions can be used to compress a string? zip() zip_compress() gzcompress() compress() zip() zip_compress() gzcompress() compress() ANSWER DOWNLOAD EXAMIANS APP
PHP Functions What will be the output of the following PHP code?function sum($num1, $num2) {$total = $num1 + $num2;echo "cos($total)";}sum(5,-5); -0.5 1 0 0.5 -0.5 1 0 0.5 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 No Output Less Than 0 None of the Mentioned Not True No Output Less Than 0 None of the Mentioned ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Returning values from functions may include ..... Objects Both A & B Arrays None of above Objects Both A & B Arrays None of above ANSWER DOWNLOAD EXAMIANS APP
PHP Functions It is always necessary to use parentheses with the print function. False True False True ANSWER DOWNLOAD EXAMIANS APP
PHP Functions Above usleep() function pauses PHP for .usleep(1000000); 100 microseconds 1 microseconds 1 second 10 seconds 100 microseconds 1 microseconds 1 second 10 seconds ANSWER DOWNLOAD EXAMIANS APP