✔ Used to exit a loop immediately when a specific condition is met
✔ Commonly used in for, while, and do-while loops
✔ Example: Stopping a loop when a certain number is found in a list
✔ Used to skip the current iteration and proceed with the next one
✔ Helps avoid unnecessary calculations or steps in loops
✔ Example: Skipping even numbers in a loop that prints only odd numbers
✔ Directly jumps to a labeled part of the program
✔ Rarely used but helpful in specific cases like error handling
✔ Example: Jumping to an error message in input validation