Q. what is the output of below program?
Code:<?php
for($i=0; $i<=5; $i++){
if($i%2==0)
echo "$i";
}
?>
β
Correct Answer: (B)
024
<?php
for($i=0; $i<=5; $i++){
if($i%2==0)
echo "$i";
}
?>
You must be Logged in to update hint/solution