1.

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

A. Executed...
B. Executed...Executed...
C. Executed...Executed...Executed...
D. Executed...Executed...Executed...Executed...Executed...
E. None of these
Answer» D. Executed...Executed...Executed...Executed...Executed...


Discussion

No Comment Found

Related MCQs