Respuesta :
Answer:
B. indefinite iteration
C. definite iteration
Explanation:
indefinite iteration = loop until condition is met
definite iteration = loop a specified number of times
Loops are used to perform repetitive and iterative operations.
The two types of loops are: (B). indefinite iteration and (C). definite iteration
Definite iteration
A definite iteration is to be carried out in a fixed number of times.
It is usually implemented using the for loop.
The syntax of the for loop in python is:
for var in iterable:
Indefinite iteration
An indefinite iteration is to be carried out until a condition is met
It is usually implemented using the while loop.
The syntax of the while loop is python is:
while condition:
Hence, the true options are (b) and (c)
Read more about loops at:
https://brainly.com/question/12891022