1.

What will be the output of the following PHP code ?
<?php
function fun($number)
{
$number = 5 + $number;
echo $number;
}
fun(7);
?>

A. 5
B. 7
C. 12
D. Error
E. None of these
Answer» D. Error


Discussion

No Comment Found

Related MCQs