Using the university schema, fill in the blank to complete the SQL query that finds the id and name of each student who has not taken any course offered before 2017.
a) WHERE course_year >= 2017
b) WHERE course_year <= 2017
c) WHERE course_year > 2017
d) WHERE course_year < 2017