What is the default behavior of a switch statement if no case matches the switch expression?
It throws an error and stops execution
It executes the code block under the "default" case (if present)
It automatically inserts a "default" case with an empty code block
It continues executing the code in the following switch statement