1.

What will be the output of the following PHP code?
<?php
function 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


Discussion

No Comment Found

Related MCQs