MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following PHP code ? <?php $x = 4; $y = -3; $z = 11; echo 4 + $y * $z / $x; ?> |
| A. | 4.25 |
| B. | 3.25 |
| C. | -3.25 |
| D. | -4.25 |
| Answer» E. | |