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

A 1 

B Infinitive 

C 5 

D 10 

+ Answer
+ Report
Total Preview: 1097

Copyright © 2024. Powered by Intellect Software Ltd