For Loop:
Used when the number of iterations is known beforehand. It repeats a block of code a specified number of times.
While Loop:
Executes a block of code as long as a given condition remains true. It is useful when the number of iterations is not known in advance.
Do-While Loop:
Similar to the while loop, but it guarantees at least one execution of the code block, as the condition is checked after the block is executed.
Break and Continue:
Break:
The break statement is used to exit the loop or switch statement immediately, regardless of whether the loop condition is still true.
Continue:
The continue statement is used to skip the current iteration of the loop and proceed to the next iteration.