Q. What will be the output of the following PHP code ?
Code:
<?php
for ($z = 0; $z < 20; $z++)
{
print "MCQ";
break;
print "Buddy";
}
?>
β
Correct Answer: (C)
Buddy