

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following PHP code? |
A. | Array ( [1] => hello [4] => hello [5] => php ) Array ( [5] => php ) |
B. | Array ( [1] => hello [2] => hello [3] => hello [4] => hello ) Array ( [5] => php ) |
C. | Array ( [1] => hello [2] => hello [3] => hello [4] => hello [5] => php ) Array ( [5] => php ) |
D. | Array ( [1] => hello [2] => hello [3] => hello [4] => hello ) Array ( [1] => php ) |
Answer» D. Array ( [1] => hello [2] => hello [3] => hello [4] => hello ) Array ( [1] => php ) | |