

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following PHP code ? <?php $x = 3.5; $y = 2; $z = 2; echo $x / $y / $z; ?> |
A. | 1.75 |
B. | 0.875 |
C. | 3.5 |
D. | Error |
Answer» C. 3.5 | |