

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following PHP code ? <?php $i = 0; while($i = 10) { print "hi"; } print "hello"; ?> |
A. | Hello |
B. | Infinite loop |
C. | Hihello |
D. | Error |
Answer» C. Hihello | |