Question:Which of the following code will make an infinite loop? 

A 
let i=10;
  do{
     
    i++
   }(i>10);
 

B 
let i=10;
  do{
     
    i++
   }(i<19);
 

C 
let i=10;
  do{
     
    i++
   }(i>11);
 

D None 

+ Answer
+ Report
Total Preview: 902

Copyright © 2025. Powered by Intellect Software Ltd