What happens if you leave off the else clause in an SQL CASE statement and no conditions are met?

a) The SQL query returns an error.
b) The SQL query returns NULL for rows where no conditions are met.
c) The SQL query returns the default value specified by the database system.
d) The SQL query returns the value of the first condition that evaluates to TRUE.