

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following PHP code ? <?php $x = 4; $y = 3; $z = 1; echo "$x = $x + $y + $z"; ?> |
A. | 4 = 4 + 3 + 1 |
B. | 8 |
C. | 8 = 4 + 3 +1 |
D. | Error |
Answer» B. 8 | |