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: 898

Copyright © 2024. Powered by Intellect Software Ltd