Question:What will be the output?<?php $i=0; while($i<=10){ if($i<=5){ continue; } print($i); $i=$i+1; } ?>
<?php $i=0; while($i<=10){ if($i<=5){ continue; } print($i); $i=$i+1; } ?>
A 1 B Infinitive C 5 D 10
+ AnswerB
+ Report