MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following PHP code?<?phpfunction Add($n1, $n2) { $total = $n1 + $n2; echo chr($total); }$var = "Add";$var(14, 41); ?> |
| A. | 7 |
| B. | 41 |
| C. | 14 |
| D. | 55 |
| E. | None of these |
| Answer» B. 41 | |