1.

What will be the output of the following PHP code ?
<?php
$p = 5;
while($p = 20)
{
print "INDIA";
}
print "USA";
?>

A. 5
B. 20
C. USA
D. INDIA.....infinite time
E. USA.....infinite time
Answer» E. USA.....infinite time


Discussion

No Comment Found

Related MCQs