MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following PHP code?<?phpfunction fun($message) { echo "$message"; }$var = "fun";$var("Executed...");?> |
| A. | message |
| B. | Error |
| C. | Nothing |
| D. | Executed... |
| E. | None of these |
| Answer» E. None of these | |