Consider the table given below:
Table: STUDENT
$$
\begin{array}{|l|l|l|l|}
\hline \text { ADMNO } & \text { NAME } & \text { CLASS } & \text { SCORE } \\
\hline \text { A001 } & \text { Amit } & \text { 12A } & 90 \\
\hline \text { A002 } & \text { Amit } & \text { 12B } & 91 \\
\hline \text { A003 } & \text { Bhavana } & \text { 12A } & 90 \\
\hline \text { A004 } & \text { Yamini } & \text { 12A } & 89 \\
\hline \text { A005 } & \text { Ashok } & \text { 12B } & 95 \\
\hline
\end{array}
$$
Which of the following command will display all the records according to their names in descending order and their scores in descending order?
(A) SELECT * FROM STUDENT ORDER BY NAME, SCORE DESC;
(B) SELECT * FROM STUDENT ORDER BY NAME AND SCORE DESC;
(C) SELECT * FROM STUDENT ORDER BY NAME DESC, SCORE DESC;
(D) SELECT * FROM STUDENT ORDER BY NAME DESC AND SCORE DESC;