1.

What will be the output of the following PHP code ?
<?php
function Example($d)
{
$d = 12 + $d;
echo "$d";
}
Example(6);
?>

A. 12
B. 6
C. 18
D. $d
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs