The default statement of a switch is always executed.
B
Correct answer
Explanation
The default case in a switch statement only executes when NO other case matches the expression being evaluated. It's an optional catch-all that runs if the switch value doesn't equal any of the defined case values. If a case matches and executes (with or without a break), the default is skipped.