

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following PHP code?$score = 1234; $scoreboard = (array) $score; echo $scoreboard[0]; |
A. | 1 |
B. | Error |
C. | 1234 |
D. | 2 |
Answer» D. 2 | |