1.

What will be the output of the following PHP code ?
<?php
for ($z = 0; $z < 20; $z++)
{
print "Mania";
break;
print "Interview";
}
?>

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


Discussion

No Comment Found

Related MCQs