1.

What will be the output of the following PHP code ?
<?php
for ($t = 2; $t < 7; $t++)
{
print "Interview n";
continue;
print "Mania";
}
?>

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


Discussion

No Comment Found

Related MCQs