Continue statement: Similar to break, but instead of terminating completely, it skips remaining code within one iteration and moves on to the next iteration.
Nested loops:Loops within loops, where break statements can be used to exit out of multiple levels of looping.
Switch statement: A control flow statement that allows a variable to be tested for equality against a list of values, and break statements are commonly used within switch cases.