1. What is the purpose of the “break” statement in a switch-case block in Java?
Ans. To continue executing the next case statement.
2. What is the purpose of the “default” case in a switch-case block in Java?
Ans. To provide a default behavior if none of the cases match.
