While Loop: A while loop repeatedly executes a block of code as long as a given condition remains true.
Loop Variable: The loop variable is a variable that keeps track of the current iteration or count in a loop.
Nested Loop: A nested loop is a loop inside another loop. It allows you to perform more complex repetitive tasks by iterating over multiple sets of data simultaneously.