What does the `break` statement do when used in a `switch` statement in Java?

What does the `break` statement do when used in a `switch` statement in Java? Correct Answer It exits the `switch` statement and continues with the next statement after it

Related Questions