PHP Operators and Expressions What will be the output of the following PHP code ?$color = red;echo "$color" . red ; error nothing red red red error nothing red red red ANSWER DOWNLOAD EXAMIANS APP
PHP Operators and Expressions What will be the output of the following PHP code ?$one = 1;print($one);print $one; Error 11 01 10 Error 11 01 10 ANSWER DOWNLOAD EXAMIANS APP
PHP Operators and Expressions What will be the output of the following PHP code ?function fun() {$x = 0;echo $x;$x++;}fun();fun();fun(); 123 000 012 111 123 000 012 111 ANSWER DOWNLOAD EXAMIANS APP
PHP Operators and Expressions What will be the output of the following PHP code ?$a = 0x6db7;print $a<<6; 1797568 no output 0x6dc0 error 1797568 no output 0x6dc0 error ANSWER DOWNLOAD EXAMIANS APP
PHP Operators and Expressions What will be the output of the following PHP code ? Nothing Error Hello World Missing semicolon error Nothing Error Hello World Missing semicolon error ANSWER DOWNLOAD EXAMIANS APP
PHP Operators and Expressions What will be the output of the following PHP code ?< ? php < ? php echo "Hello world"; ? > ? > Hello Error Hello world Nothing Hello Error Hello world Nothing ANSWER DOWNLOAD EXAMIANS APP