Respuesta :
Answer:
The answer is "a counter controlled loop".
Explanation:
The explanation of the given code as follows:
- An integer variable x is initialized with 0.
- Using a while loop to check the condition repeatedly.
- The loop will execute until the value of x is less than 10 and the incrementing value of x variable by one.
- It is not an infinite loop.
- The sentinel controlled loop is used when the coder doesn't know the number of iteration to occur in the loop. In other words, we can say that it is opposite to counter controlled loop.