9.
which of these looping conditions will induce an infinite
loop the starting value of i is zero
1. while(i>0) 2. for I in range(1,i,1) 3. while(i==0)
Answers
Answered by
8
Explanation:
3
I think this is correct
Answered by
31
Explanation:
An infinite loop (sometimes called an endless loop ) is a piece of coding that lacks a functional exit so that it repeats indefinitely. ... Intentional uses for infinite loops include programs that are supposed to run continuously, such as product demo s or in programming for embedded system s.
Similar questions