PHP Operators and Expressions What will be the output of the following PHP code ?$var1 = 3;print ++$var++; 3 4 5 error 3 4 5 error ANSWER DOWNLOAD EXAMIANS APP
PHP Operators and Expressions What will be the output of the following PHP code ?$y = 2;$w = 4;$y *= $w /= $y;echo $y, $w; 80.5 42 44 82 80.5 42 44 82 ANSWER DOWNLOAD EXAMIANS APP
PHP Operators and Expressions What will be the output of the following PHP code ?$a = "$winner";$b = "/$looser";echo $a,$b; /$looser $winner/$looser $looser / /$looser $winner/$looser $looser / ANSWER DOWNLOAD EXAMIANS APP
PHP Operators and Expressions What will be the output of the following PHP code ?define("__LINE__", "PHP is a scripting language");echo __LINE__; __LINE__ 2 ERROR PHP is a scripting language __LINE__ 2 ERROR PHP is a scripting language ANSWER DOWNLOAD EXAMIANS APP
PHP Operators and Expressions What is the output of given statement?Print 17 % 3; 5.666667 5.67 2 none of above 5.666667 5.67 2 none of above ANSWER DOWNLOAD EXAMIANS APP
PHP Operators and Expressions What will be the output of the following PHP code ?$color1 = "red";$color2 = "red";echo "$color1" + "$color2"; 1 0 red green redgreen 1 0 red green redgreen ANSWER DOWNLOAD EXAMIANS APP