1.

What will be the output of the following PHP code ?
<?php
function fun($m)
{
if ($m < 10)
echo "True";
if ($m >= 10)
echo "False";
}
fun(20);
?>

A. Error
B. True
C. Nothing
D. False
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs