MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following PHP code ? <?php $x; if ($x == 0) print "hi" ; else print "how are u"; print "hello" ?> |
| A. | How are uhello |
| B. | Hihello |
| C. | Hi |
| D. | No output |
| Answer» C. Hi | |