

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following PHP code ? <?php $a = array("hi", "hello", "bye"); foreach ($a as $value) { if (count($a) == 2) print $value; } ?> |
A. | Hihellobye |
B. | Infinite loop |
C. | Hihello |
D. | No output |
Answer» E. | |