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