wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

DBMS Internal 1 - CSE,BMSIT

Total questions: 10

Worksheet time: 6mins

Name
Class
Date
1.

A collection of conceptual tools for describing data, relationships, semantics and constraints is

referred to as ..........

a)

Data Model

b)

E-R Model

c)

DBMS

d)

All of the above

2.

In E-R Diagram, weak entity is represented by.......

a)

Rectangle

b)

Square

c)

Double Rectangle

d)

Circle

3.

Which of the following is a Data Definition Language (DDL) command?

a)

Delete

b)

Insert

c)

Drop

d)

Merge

4.

Relation R has eight attributes ABCDEFGH. Fields of R contain only atomic values. F = {CH -> G, A -> BC, B -> CFH, E -> A, F -> EG} is a set of functional dependencies (FDs) so that F+ is exactly the set of FDs that hold for R.


How many candidate keys does the relation R have?

a)

3

b)

4

c)

5

d)

6

5.

Which of the following is TRUE?

a)

Every relation in 3NF is also in BCNF

b)

A relation R is in 3NF if every non-prime attribute of R is fully functionally dependent on every key of R

c)

Every relation in BCNF is also in 3NF

d)

No relation can be in both BCNF and 3NF

6.

Which of the following is used with database?

a)

ATM

b)

Payment gateway

c)

Data Mining

d)

None of the above

7.

Given the following two statements:


S1: Every table with two single-valued

attributes is in 1NF, 2NF, 3NF and BCNF.


S2: AB->C, D->E, E->C is a minimal cover for

the set of functional dependencies

AB->C, D->E, AB->E, E->C.

a)

S1 is TRUE and S2 is FALSE.

b)

Both S1 and S2 are TRUE.

c)

S1 is FALSE and S2 is TRUE.

d)

Both S1 and S2 are FALSE.

8.

A relation between two entities is treated as a single entity is called__________

a)

Aggregation

b)

Specialization

c)

Generalization

d)

None of the above

9.

E-R Modeling technique is a _______

a)

Top-down approach

b)

Bottom-up approach

c)

User-Defined

d)

None of the above

10.

Table A

Id Name Age

----------------

12 Arun 60

15 Shreya 24

99 Rohit 11


Table B

Id Name Age

----------------

15 Shreya 24

25 Hari 40

98 Rohit 20

99 Rohit 11


Table C

Id Phone Area

-----------------

10 2200 02

99 2100 01

Consider the above tables A, B and C. How many tuples does the result of the following SQL query contains?

SELECT A.id

FROM A

WHERE A.age > ALL (SELECT B.age FROM B

WHERE B. name = "arun")

a)

4

b)

3

c)

0

d)

1