Consider the given table 'Result'.
$$ \begin{array}{cc} \hline \text { Student Name } & \text { Marks } \\ \hline A & 55 \\ B & 90 \\ C & 40 \\ D & 80 \\ E & 85 \\ F & 95 \\ G & 82 \\ \hline \end{array} $$
(i) Find out the students who have scored more than 80 marks, and display them in descending order according to their marks?
(A) SELECT student-name,marks FROM Result WHERE marks $>80$ ORDERBY marks DESC
(B) SELECT FROM Result WHERE marks $>80$ ORDERBY marks DESC
(C) SELECT student-name,marks FROM Result WHERE marks $>80$ ORDERBY marks
(D) (A) and (B)
(ii) From the above table, find out the top-most three students.
(A) SELECT student-name FROM Result ORDERBY marks DESC $>3$
(B) SELECT student-name FROM Result ORDERBY marks DESC $=3$
(C) SELECT student-name FROM Result ORDERBY marks DESC limit 3
(I) None of these