What happens if there is no matching case in a switch statement?
The program skips the switch statement and continues with the next statement
The program throws an error and stops execution
The program enters an infinite loop
The program executes the code inside the default case (if provided)