S1: Data elements in the database can be modified by changing the data dictionary.
S2: The data dictionary contains the name and description of each data element.

I. Reduces number of tables
II. Reduces database size
III. Reduces data constraints
IV. Reduces chances of data anomalies
You want to select a stratified random sample of 10 employees, with the number of employees sampled from each department proportional to the size of the department. How many employees should be sampled from Department 3?
{22, 25, 30, 35, 40, 45, 50, 55, 60, 65}
Assuming the ages have been clustered into the following groups:
Which cluster does the age 48 belong to?
Assume the decision tree splits the temperature at 22 and 32. What class does the temperature of 28 fall into?
In LZW compression, consider the string ABABABA. Assuming the dictionary starts with single characters and new entries are added as new sequences are found, which of the following represents the correct sequence of dictionary indices after encoding the string?
The minimum number of tables needed to convert the given ER diagram into the relational model?
S1: In SQL, the UNIQUE constraint ensures that all values in a column are different.
S2: In SQL, CHECK constraint ensures whether the value in columns fulfils the specified condition or not.
S1: DELETE command is used to delete a specific row from the table whereas the TRUNCATE command is used to remove all rows from the table.
S2: We can use the DELETE command with WHERE clause but cannot use the TRUNCATE command with it.
S1: In SQL, a table can have many foreign keys.
S1: In SQL, a table can have many primary keys.
(a)Select Name from people where Age > 31;
(b)Select Name from people where Height > 190;
(c)Select Name from people where (Age > 31) or (Height > 190);
If the SQL queries (a) and (b) above, return 20 rows and 17 rows in the result set respectively, then what is one possible number of rows returned by the SQL query (c) ?


Which of the following SQL returns “the total salary of all employees at each branch of the bank”.
