+--------+--------------+------+--------+-------+ | GCODE | GNAME | SIZE | COLOUR | PRICE | +--------+--------------+------+--------+-------+ | 111 | TShirt | XL | Red | 1400 | | 112 | Jeans | L | Blue | 1600 | | 113 | Skirt | M | Black | 1100 | | 114 | Ladies Jacket| XL | Blue | 4000 | | 115 | Trousers | L | Brown | 1500 | | 116 | Ladies Top | L | Pink | 1200 | +--------+--------------+------+--------+-------+Write SQL commands for the following: (a) To display names of those garments that are available in ‘L’ size.
SELECT GNAME FROM GARMENT WHERE SIZE = 'L';This command retrieves the names of garments available in L size: Jeans, Trousers, and Ladies Top.
UPDATE GARMENT SET COLOUR = 'Orange' WHERE GCODE = 115;This statement changes the COLOUR of Trousers (GCODE 115) to Orange.
INSERT INTO GARMENT (GCODE, GNAME, SIZE, COLOUR, PRICE) VALUES (117, 'Kurta', 'M', 'White', 1000);This command adds a new garment record named Kurta to the table.
ALTER TABLE GARMENT DROP COLUMN COLOUR;This command removes the COLOUR column and all its associated data from the GARMENT table.
Given the following table:
| ENO | SALARY |
|---|---|
| A101 | 4000 |
| B109 | NULL |
| C508 | 6000 |
| A305 | 2000 |
State the output of the following query:
SELECT COUNT(SALARY) FROM EMPLOYEE;
| List-I (Aggregate function) | List-II (Description) |
|---|---|
(A) count(marks) | (III) Count all non null values of marks column |
(B) count() | (I) Count all rows |
(C) avg(marks) | (II) Finding average of non null values of marks |
(D) sum(marks) | (IV) Finding sum of all marks |
A racing track is built around an elliptical ground whose equation is given by \[ 9x^2 + 16y^2 = 144 \] The width of the track is \(3\) m as shown. Based on the given information answer the following: 
(i) Express \(y\) as a function of \(x\) from the given equation of ellipse.
(ii) Integrate the function obtained in (i) with respect to \(x\).
(iii)(a) Find the area of the region enclosed within the elliptical ground excluding the track using integration.
OR
(iii)(b) Write the coordinates of the points \(P\) and \(Q\) where the outer edge of the track cuts \(x\)-axis and \(y\)-axis in first quadrant and find the area of triangle formed by points \(P,O,Q\).