Break statement is used to bring the control out of inner most loop.
Continue statement is used to skip the remaining statements in the current iteration of the loop and moves the control back to the start of the loop.
Pass statement is used as a place-holder that does nothing. Brings control out of loop.