?
What will be the output of the following PHP code ?
What will be the output of the following PHP code ?
<?php
for ($x = 1; $x < 10; $x++)
for ($y = 1; $y < 5; $y++)
print "Hello";
?>
<?php
for ($x = 1; $x < 10; $x++)
for ($y = 1; $y < 5; $y++)
print "Hello";
?>
Answer & Solution
Correct Answer:
Option
A
9*4 times is printed.
Join the Discussion
Login to post a comment or share your explanation.
Login