C-18-Q015mediumsingle_mcq
While loops are often used as alternatives to:
While loops are often used as alternatives to:
- a
ifstatements - b
forstatements - c
printstatements - d
importstatements
ব্যাখ্যা
A while loop can perform the same repetition as a for loop and is often used as its alternative, especially when the number of iterations is not fixed in advance. Both are looping constructs, so one can replace the other.