

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