PHP Operators and Expressions What will be the output of the following PHP code ?echo "This is India"; This is India This is India Error This is This is India This is India Error This is 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 3 and 4 Option 1 and 4 Option 2 and 4 Option 2 and 3 Option 3 and 4 Option 1 and 4 Option 2 and 4 ANSWER DOWNLOAD EXAMIANS APP
PHP Operators and Expressions What will be the output of the following PHP code ?$color1 = "red";$color2 = "1";$color3 = "grey";echo "$color1" + "$color2" . "$color3"; grey 0 red1grey 1grey grey 0 red1grey 1grey ANSWER DOWNLOAD EXAMIANS APP
PHP Operators and Expressions What will be the output of the following PHP code ?$a = '12345';print "qwe{$a}rty"; error no output qwe{$a}rty qwe12345rty error no output qwe{$a}rty qwe12345rty ANSWER DOWNLOAD EXAMIANS APP
PHP Operators and Expressions What will be the output of the following PHP code ?$x = 10;$y = 4;$z = 3;echo $x % $y % $z; Error 0 2 1 Error 0 2 1 ANSWER DOWNLOAD EXAMIANS APP
PHP Operators and Expressions What will be the output of the following PHP code ?define("GREETING", "PHP is a scripting language");echo $GREETING; $GREETING PHP is a scripting language GREETING no output $GREETING PHP is a scripting language GREETING no output ANSWER DOWNLOAD EXAMIANS APP