1.

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

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


Discussion

No Comment Found

Related MCQs