PHP Control Structures (Loop)
What will be the output of the following PHP code ?
for ($x = 1; $x < 10; $x++)
for ($y = 1; $y < 5; $y++)
print "Hello";

Hello….36 times
Hello….45 times
Hello….50 times
Hello….40 times

ANSWER DOWNLOAD EXAMIANS APP