1.

What will be the output of the following PHP code ?
<?php
function calculate($n1, $n2)
{
$n3 = $n1 * $n2;
return $n3;
}
$R = calculate(22, 23);
echo $R;
?>

A. 22
B. 23
C. Error
D. 506
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs