1.

What will be the output of the following PHP code ?
<?php
$p = 10;
while (--$p > 0)
{
$p++;
print $p;
print "INDIA";
}
?>

A. Error
B. 10
C. 0
D. 10INDIA......infinite time
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs