1.

What will be the output of the following PHP code ?
<?php
$n = "";
while ($n = 20)
{
print "Interview";
}
print "Mania";
?>

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


Discussion

No Comment Found

Related MCQs