Question:If a table named students has a column called Studentname storing the names of the students, what will be the correct query to display the names of the students in reverse alphabetical order?
A Select Studentname from students reverse
B Select Studentname from students reverse name
C Select Studentname from students order by name descending
D Select Studentname from students order by name Reverse
E Select Studentname from students order by Studentname desc
F Select desc Studentname from Students
G Select Reverse Studentname from Students