Question 10
Consider the data table below in SQLite database.
SELECT * FROM products ORDER BY price ASC;
SELECT * FROM products ORDER BY price DESC;
SELECT price FROM products;
SELECT MAX(price) FROM products;
Consider the data table below in SQLite database.
SELECT * FROM products ORDER BY price ASC;
SELECT * FROM products ORDER BY price DESC;
SELECT price FROM products;
SELECT MAX(price) FROM products;
Correct answer
SELECT * FROM products ORDER BY price DESC;
Question 10 of 21 in the IIT Madras BS Modern Application Development I (MAD 1) End Term paper sat on 21 Dec 2025, in the September 2025 term (Modern Application Development I 18 Dec 25). It carries 2 marks.