Answer:
B. Constant Loop
Step-by-step explanation:
Looping involves going over a block of code or statement infinitely or over a particular number of times. There are a number of loops, such as the infinite loop, while loop, do-while loop among others.
Infinite loop: All loops are expected to terminate after a few iterations, however, if that block of code is not available, the loop is said to be an infinite loop. This is because it will iterate continuously and indefinitely.
While loop: Also referred to as a Pretest loop, because before the statements are executed in its body, it verifies the boolean expression.
Do-while loop: Also referred to as a Posttest loop, because it tests the boolean expression after the block or statement is executed.