Transcription: A break statement lets you end a Do, For, While or Switch statement and exit from it at any point. We have already seen the use of break in a switch statement to end a case. In a switch body, the break statement ends the processing of the switch body and control is transferred to the statement after the switch statement. In a Do, For or While loop, the break statement ends the loop and moves control to the next statement outside the loop.