1.

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

A. 12
B. 25
C. Error
D. 37
E. None of these
Answer» D. 37


Discussion

No Comment Found

Related MCQs