Final answer:
A nested loop is a loop that exists inside the body of another loop. It allows you to perform more complex operations by combining multiple loops.
Step-by-step explanation:
A nested loop is a loop that exists inside the body of another loop. In programming, it is common to use nested loops when you need to perform a repetitive task multiple times. The inner loop will execute its statements repeatedly for each iteration of the outer loop. This allows you to perform more complex operations by combining multiple loops.