What will be the output of the following PHP code ?
<?php
$i = 0
while ($i++)
{
print $i;
}
print $i;
?>
<?php
$i = 0
while ($i++)
{
print $i;
}
print $i;
?>A. 0
B. infinite loop
C. 01
D. 1
Answer: Option D
<?php
$i = 0
while ($i++)
{
print $i;
}
print $i;
?>A. 0
B. infinite loop
C. 01
D. 1
Answer: Option D
A. how are u
B. hi
C. error
D. no output
A. hi
B. no output
C. error
D. how are u
A. how are uhello
B. hihello
C. hi
D. no output
A. true
B. false
C. error
D. no output
Join The Discussion