

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following PHP code ? <?php $a = "1"; $b = "0"; if ((int)$a && $b) print"hi"; else print "hello"; ?> |
A. | Hello |
B. | No output |
C. | Hi |
D. | Error |
Answer» B. No output | |