Complete the following correlated subquery to find each instructor's course with the lowest capacity. The query should return the rows containing algebra, machine learning, and world history.
a) SELECT MIN(Capacity)
b) SELECT MIN(Course)
c) SELECT TOP 1 Course
d) SELECT AVG(Capacity)