MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following PHP code ? <?php for ($count = 1; $count != 20;$count++) { print $count; $count++; } ?> |
| A. | Infinite |
| B. | 123 .20 |
| C. | 1357 19 |
| D. | 13579 21 |
| Answer» B. 123 .20 | |