Final answer:
The correct SQL query for sorting by age in descending order and then by address in ascending order is Option 1: SELECT * FROM Student ORDER BY age DESC, address ASC.
Step-by-step explanation:
The SQL query that correctly sorts students first by age in descending order and then by address in ascending order is:
SELECT * FROM Student ORDER BY age DESC, address ASC;
This query is reflected in Option 1. When using the ORDER BY clause in SQL, specifying 'DESC' after a column name sorts the data in descending order, while 'ASC' sorts in ascending order. Therefore, to sort by age in descending order first and then by address in ascending order, you would list the age column followed by 'DESC' and then the address column followed by 'ASC'.