PHP Operators and Expressions What will be the output of the following PHP code ?$a = 0x6db7;print $a<<6; 0x6dc0 error no output 1797568 0x6dc0 error no output 1797568 ANSWER DOWNLOAD EXAMIANS APP
PHP Operators and Expressions What will be the output of the following PHP code ?echo "This is India"; Error This is This is India This is India Error This is This is India This is India 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 no output GREETING PHP is a scripting language $GREETING no output GREETING PHP is a scripting language ANSWER DOWNLOAD EXAMIANS APP
PHP Operators and Expressions What will be the output of the following PHP code ?$color1 = "1";$color2 = "1";echo "$color1" + "$color2"; 11 1 0 2 11 1 0 2 ANSWER DOWNLOAD EXAMIANS APP
PHP Operators and Expressions What will be the output of the following PHP code ?$b = 1;$c = 4;$a = 5;$d = $b + $c == $a;print $d; 10 0 5 1 10 0 5 1 ANSWER DOWNLOAD EXAMIANS APP