

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following PHP code ? |
A. | Array ( [a] => red [b] => green [c] => blue ) |
B. | Array ( [a] => red [b] => green [c] => blue [d] => yellow ) |
C. | Array ( [e] => red [f] => green [g] => blue ) |
D. | Array ( [a] => red [b] => green [c] => blue [d] => yellow [e] => red [f] => green [g] => blue ) |
Answer» B. Array ( [a] => red [b] => green [c] => blue [d] => yellow ) | |