• 2022-06-17
    What is the following statement about continue statement that is correct?
    A: When a multi-level loop is nested, all levels of the loop can be closed by using a single continue statement.
    B: The continue statement can be used in loops and switch statements.
    C: The continue statement closes the loop early to prevent it from becoming a dead loop.
    D: The continue statement can only be used in three loop statements.