1.

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

A. Interview
B. infinite loop
C. Interview Mania
D. Mania
E. None of these
Answer» D. Mania


Discussion

No Comment Found

Related MCQs