PHP Operators and Expressions What will be the output of the following PHP code ?echo "echo "Hello World""; Error Hello world echo “Hello world” echo Hello world Error Hello world echo “Hello world” echo Hello world 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; 5 0 10 1 5 0 10 1 ANSWER DOWNLOAD EXAMIANS APP
PHP Operators and Expressions What will be the output of the following PHP code ?echo 5 * 9 / 3 + 9; 3.85 0 3.7 24 3.85 0 3.7 24 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 ?class myObject { }define('myObject::CONSTANT', 'test');echo myObject::CONSTANT; no output error myObject::CONSTANT test no output error myObject::CONSTANT test ANSWER DOWNLOAD EXAMIANS APP
PHP Operators and Expressions What will be the output of the following PHP code ?one = 1;two = 2;three = 3;four = 4;echo "one / two + three / four"; Error 1.25 0.75 0.05 Error 1.25 0.75 0.05 ANSWER DOWNLOAD EXAMIANS APP