How does `switch` statement work?
Question 1
Q1. How does `switch` statement work?
Answer: Jumps to the matching case
Explanation: switch jumps to the case matching the expression's value, then executes until break.