Final answer:
An infinite loop is a loop that continues indefinitely because the termination condition is never met.
Step-by-step explanation:
A loop where the original condition never becomes false and the loop iterates over and over forever is called an infinite loop. In computer programming, an infinite loop is a loop that continues indefinitely because the termination condition is never met. It can be created accidentally or intentionally, and it is important to design loops with proper termination conditions to avoid infinite loops.