Final answer:
The correct answer is SELECT DISTINCT City FROM Students; No ORDER BY needed.
Step-by-step explanation:
The correct answer is a) SELECT DISTINCT City FROM Students; No ORDER BY needed.
The SELECT DISTINCT keyword allows us to retrieve only unique values from a column in a table. In this case, it returns each city only once from the Students table.
Since the question does not specify any particular order in which the cities should be displayed, an ORDER BY clause is not needed.