Which of the following statements about the break statement is false? Group of answer choices Common uses of the break statement are to escape early from a loop or to skip the remainder of a switch. The break statement is used to exit an iteration structure early and continue execution after the loop. A break statement can only break out of an immediately enclosing while, for, do…while or switch statement. The break statement, when executed in a while, for or do…while, skips the remaining statements in the loop body and proceeds with the next iteration of the loop.