Q. What will be the output of the following PHP code ?
Code:
<?php
$num = 2;
while ($num != 5)
{
print "Executed...";
$num++;
}
?>
β
Correct Answer: (C)
Executed...Executed...Executed...