-
What will be the output of the following PHP code ?
<?php
for ($n = 2; $n < 5; $n++)
{
for ($m = 2; $m < 3; $m++)
{
print "Interview Mania \n";
}
}
?>
-
- Interview Mania
- Interview Mania
Interview Mania - Interview Mania
Interview Mania
Interview Mania - Error
- None of these
Correct Option: C
3*1 times is printed.