1.

What will be the output of the following PHP code?
<?php
$option2 = "Mania";
function fun($option1)
{
echo $option1;
echo $option2;
}
fun("Interview");
?>

A. Error
B. Mania
C. Interview
D. Interview Mania
E. None of these
Answer» D. Interview Mania


Discussion

No Comment Found

Related MCQs