1.

What will be the output of the following PHP code ?
<?php
$n = 0;
do
{
print "$n";
$n++;
}
while ($n != 5);
?>

A. 0
B. 5
C. 01234
D. Error
E. None of these
Answer» D. Error


Discussion

No Comment Found

Related MCQs