MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following PHP code ? <?php $a = 1; if ($a--) print "True"; if ($a++) print "False"; ?> |
| A. | True |
| B. | False |
| C. | Error |
| D. | No output |
| Answer» B. False | |