1.

What will be the output of the following PHP code?
<?php
function HelloFuncation()
{
echo "Hello Interview Mania n";
}
$fun_holder = "HelloFuncation";
$fun_holder();
?>

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


Discussion

No Comment Found

Related MCQs