wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Quiz finals (IT IM01)

Total questions: 25

Worksheet time: 17mins

Name
Class
Date
1.

Multiple Choice. Select the best answer based on the given statement.

It is more specific subgrouping that shares attribute with the supertype.

a)

Supertype

b)

General Entity

c)

Subtype

d)

Parent entity

2.

Multiple Choice. Select the best answer based on the given statement.

  It is a general entity type that may be related to a single or more subtype.

a)

Supertype

b)

Entity

c)

Subtype

d)

Child Entity

3.

Multiple Choice. Select the best answer based on the given statement.

 It is the process of determining entities with common attributes to form a more general entity type and is also known as a supertype entity.

a)

Specialization

b)

Aggregation

c)

Generalization

d)

Association

4.

Multiple Choice. Select the best answer based on the given statement.

It is the process of determining one or more subtype from the supertype to create a supertype or a subtype relationship.

a)

Specialization

b)

Aggregation

c)

Generalization

d)

Association

5.

Multiple Choice. Select the best answer based on the given statement.

It is also known as a special or restricted aggregation where in the existence of one entity is dependent on the existence of another.

a)

Specialization

b)

Composition

c)

Generalization

d)

Association

6.

Multiple Choice. Select the best answer based on the given statement.

It specifies that an entity instance can simultaneously be a member of two (or more) subtypes.

a)

Disjoint Rule

b)

Total Specialization Rule

c)

Partial Specialization Rule

d)

Overlap Rule

7.

Multiple Choice. Select the best answer based on the given statement.

Specifies that an entity instance of the supertype is allowed not to belong to any subtype.

a)

Disjoint Rule

b)

Total Specialization Rule

c)

Partial Specialization Rule

d)

Overlap Rule

8.

Multiple Choice. Select the best answer based on the given statement.

It denotes an “either or” scenario wherein the supertype can belong to one of the subtypes but cannot belong to others. A letter “d” inside a circle denotes disjointness.

a)

Disjoint Rule

b)

Total Specialization Rule

c)

Partial Specialization Rule

d)

Overlap Rule

9.

Multiple Choice. Select the best answer based on the given statement.

Listed below are the logical operators except

a)

and

b)

not

c)

or

d)

is null

10.

Multiple Choice. Select the best answer based on the given statement.

it is an outcome of an ER model being extended and incorporated with the new modeling constructs.

a)

Entity Relationship Model

b)

Normalization

c)

Partial Specialization Rule

d)

Enhanced ER Model

11.

Multiple Choice. Select the best answer based on the given statement.

It is the process of identifying and structuring the attributes in order to minimize or avoid data redundancies and anomalies.

a)

Entity Relationship Model

b)

Normalization

c)

Partial Specialization Rule

d)

Enhanced ER Model

12.

Multiple Choice. Select the best answer based on the given statement.

Listed below are the anomalies in normalization, except

a)

Insertion Anomaly

b)

Deletion Anomaly

c)

Update Anomaly

d)

Creation Anomaly

13.

Multiple Choice. Select the best answer based on the given statement.

This type of normal form has a characteristic of no multi-valued attribute.

a)

2NF

b)

1NF

c)

3NF

d)

4NF

14.

Multiple Choice. Select the best answer based on the given statement.

This type of normal form has a characteristic of no partial dependencies.

a)

2NF

b)

1NF

c)

3NF

d)

4NF

15.

Multiple Choice. Select the best answer based on the given statement.

This type of normal form has a characteristic of no transitive dependencies.

a)

2NF

b)

1NF

c)

3NF

d)

4NF

16.

Multiple Choice. Select the best answer based on the given statement.

This type of normal form has a characteristic of no repeating groups.

a)

2NF

b)

1NF

c)

3NF

d)

4NF

17.

Fill in the blank. Complete the correct SQL syntax.

Creating a database.

CREATE (a)   DATABASE_NAME;

18.

Fill in the blank. Complete the correct SQL syntax.

Switch/activate the database.

(a)   DATABASE_NAME;

19.

Fill in the blank. Complete the correct SQL syntax.

Creating the database table.

CREATE (a)   TABLE_NAME (

COLUMN_NAME DATA TYPE(SIZE) PRIMARY KEY);

20.

Fill in the blank. Complete the correct SQL syntax.

Displaying specific column.

SELECT COLUMN_NAME (a)   TABLE_NAME;

21.

Fill in the blank. Complete the correct SQL syntax.

Adding record to a table.

INSERT (a)   TABLE_NAME VALUES

('VALUE TO BE INSERTED';

22.

Fill in the blank. Complete the correct SQL syntax.

Adding column to a table.

(a)   TABLE TABLE_NAME ADD COLUMN

NEW_COLUMN_NAME DATATYPE (SIZE);

23.

Fill in the blank. Complete the correct SQL syntax.

Updating record to a table.

UPDATE TABLE_NAME (a)   COLUMN_NAME = NEW_VALUE

WHERE COLUMN_NAME = VALUE;

24.

Fill in the blank. Complete the correct SQL syntax.

Displaying all records from a table.

SELECT (a)   FROM TABLE_NAME;

25.

Fill in the blank. Complete the correct SQL syntax.

Delete column from a table.

(a)   TABLE TABLE_NAME DROP COLUMN COUMN_NAME;