What does the following SQL statement do?
SELECT firstname, lastname FROM admission.student; ORDER BY GPA
a) Retrieves first and last names from the student table, ordered by GPA
b) Orders students by their first names
c) Retrieves all columns from the student table, ordered by GPA
d) Orders students by their last names