1.

What will be the output of the following PHP code ?
<?php
function First($str)
{
echo "This is ". $Str;
}
First("Important");
?>

A. Important
B. This is
C. Error
D. This is Important
E. None of these
Answer» D. This is Important


Discussion

No Comment Found

Related MCQs