1.

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


Discussion

No Comment Found

Related MCQs