MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following PHP code?<?phpfunction Add($n1, $n2) { $total = $n1 + $n2; echo cos($total); }Add(10,-10); ?> |
| A. | 0 |
| B. | 1 |
| C. | Error |
| D. | Nothing |
| E. | None of these |
| Answer» C. Error | |