adplus-dvertising
frame-decoration

Question

What will be the output of the following PHP code ?
<?php
$i = 0
while ($i < 3)
{
    print "hi";
    $i--;
}
print "hello"
?>

a.

hi
hi
hello

b.

hi
hi
hi

c.

hi
hi
hi
hi
hello

d.

infinite loop

Answer: (d).infinite loop

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What will be the output of the following PHP code ?