Suman has created a table named WORKER with a set of records to maintain the data of the construction sites, which consists of WID, WNAME, WAGE, HOURS, TYPE, and SITEID. After creating the table, she entered data in it, which is as follows : 
WNAME WAGE * HOURS Ahmed J 1500 * 200 = 300000 Anju S 1200 * 130 = 156000This multiplies WAGE and HOURS for workers
TYPE MAX(WAGE) MIN(WAGE) Unskilled 1500 780 Skilled 1200 520 Semiskilled 560 560Explanation:
WNAME SITEID Jacob B 101 Ahmed J 103This filters rows with TYPE = "Unskilled",
Give the output of the query: SELECT MONTH("2010-03-05");
| List-I | List-II |
|---|---|
| (A) SUBSTR() | (II) To extract a substring from a string. |
| (B) TRIM() | (IV) To remove spaces from both sides of the string. |
| (C) INSTR() | (I) To find the position of a substring in a string. |
| (D) LEFT() | (III) To extract characters from the left side of the string. |
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;
Draw a rough sketch for the curve $y = 2 + |x + 1|$. Using integration, find the area of the region bounded by the curve $y = 2 + |x + 1|$, $x = -4$, $x = 3$, and $y = 0$.