MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following PHP code ? <?php function fun($x,$y) { $x = 4; $y = 3; $z = $x + $y / $y + $x; echo "$z"; } fun(3, 4); ?> |
| A. | 7 |
| B. | 9 |
| C. | 0 |
| D. | Error |
| Answer» C. 0 | |