1.

What will be the output of the following PHP code?
<?php
function calculation($Rs, $tax="")
{
$Result = $Rs + ($Rs * $tax);
echo "$Result";
}
calculation(80);
?>

A. 160
B. 0
C. Erro
D. 80
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs