Computer Science, asked by johnsmith11matt, 6 months ago

32. Which type of loop is
represented by following statement?
for (int i = 1; i <= 1000; i ++) {
Finite
Infinite
Delay loop
None​

Answers

Answered by heyParam
1

Answer:

Finite Loop

Explanation:

It is a finite loop as the loop will get terminated when the value of i variable will be 1001.

Similar questions