

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following PHP code ? <?php $x = 10; $y = 5; $z = 3; if ($x / $y / $z) print "hi"; else print "hello"; ?> |
A. | Hi |
B. | Hello |
C. | Error |
D. | No output |
Answer» B. Hello | |