PHP Operators and Expressions What will be the output of the following PHP code ?echo "Hello World" Hello world Error Nothing Hello world in italics Hello world Error Nothing Hello world in italics ANSWER DOWNLOAD EXAMIANS APP
PHP Operators and Expressions PHP will automatically convert strings to numbers when it needs to. FALSE TRUE FALSE TRUE ANSWER DOWNLOAD EXAMIANS APP
PHP Operators and Expressions What will be the output of the following PHP code ?$a = 10;$b = 4;$c = fun(10,4);function fun($a,$b) {$b = 3;return $a - $b + $b - $a;}echo $a;echo $b;echo $c; 104 4100 1400 410 104 4100 1400 410 ANSWER DOWNLOAD EXAMIANS APP
PHP Operators and Expressions Numbers in PHP can’t be infinitely large or small, there is some minimum and maximum size. If more larger (or smaller) numbers are needed then . . . . . must be used:1. GPM libraries2. GMP libraries3. CBMath4. BCMath Option 2 and 3 Option 2 and 4 Option 1 and 4 Option 3 and 4 Option 2 and 3 Option 2 and 4 Option 1 and 4 Option 3 and 4 ANSWER DOWNLOAD EXAMIANS APP
PHP Operators and Expressions What will be the output of the following PHP code ?$x = 5;{$x = 10;echo "$x";}echo "$x"; error 510 1010 105 error 510 1010 105 ANSWER DOWNLOAD EXAMIANS APP