PHP Control Structures (Loop)
What will be the output of the following PHP code ?
$a = array("hi", "hello", "bye");
for (;count($a) < 5;) {
if (count($a) == 3)
print $a;
}

ArrayArrayArrayArrayArrayArray….infinitely
no output
(“hi”,”hello”,”bye”)(“hi”,”hello”,”bye”)(“hi”,”hello”,”bye”)(“hi”,”hello”,”bye”)…infinitely
hihellobyehihellobyehihellobyehihellobyehihellobyehihellobye…..infinitely

ANSWER DOWNLOAD EXAMIANS APP

PHP Control Structures (Loop)
What will be the output of the following PHP code ?
$i = "";
while ($i) {
print "hi";
}
while($i < 8)
$i++;print "hello";

Hi is printed 10 times, hello 7 times
Hi is printed 8 times, hello 7 times and then hi 2 times
Hi is printed once, hello 7 times and then hi 2 times
Hi is printed once, hello 7 times

ANSWER DOWNLOAD EXAMIANS APP