PHP Operators and Expressions What will be the output of the following PHP code ?echo "This is India"; This is This is India Error This is India This is This is India Error This is India ANSWER DOWNLOAD EXAMIANS APP
PHP Operators and Expressions What will be the output of the following PHP code ?$x = 5;function fun(){$x = 10;echo "$x";}fun();echo "$x"; Error 510 105 0 Error 510 105 0 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; / $winner/$looser $looser /$looser / $winner/$looser $looser /$looser ANSWER DOWNLOAD EXAMIANS APP
PHP Operators and Expressions What will be the output of the following PHP code ?echo "echo "Hello World""; Hello world echo “Hello world” Error echo Hello world Hello world echo “Hello world” Error echo Hello world ANSWER DOWNLOAD EXAMIANS APP
PHP Operators and Expressions What will be the output of the following PHP code ?$a = 5;$b = -7;$c =0;$d = ++$a && ++$b || ++$c;print $d;print $a;print $a; 05 06 15 16 05 06 15 16 ANSWER DOWNLOAD EXAMIANS APP
PHP Operators and Expressions What will be the output of the following PHP code ?# echo "Hello world";echo "# Hello world"; Error Hello world Hello world# Hello world # Hello world Error Hello world Hello world# Hello world # Hello world ANSWER DOWNLOAD EXAMIANS APP