1.

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

A. Error
B. nothing
C. Interview Mania......infinite time
D. 10Interview Mania.....infinite time
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs