1.

What will be the output of the following PHP code ? <?php $a = 10; $b = 11; if ($a < ++$a || $b < ++$b) print "hello"; else print "hi"; ?>

A. Hi
B. Hello
C. Error
D. No output
Answer» B. Hello


Discussion

No Comment Found