

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following PHP code?$total = "25 students"; $more = 10; $total = $total + $more; echo "$total"; |
A. | Error |
B. | 35 students |
C. | 35 |
D. | 25 students |
Answer» D. 25 students | |