

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following PHP code ? <?php for ($count = 1; $count < 20; $count++); print $count; ?> |
A. | 20 |
B. | 19 |
C. | 12345678910 .19 |
D. | 12345678910 .1920 |
Answer» B. 19 | |