wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

DBMS Quizzz....!

Total questions: 15

Worksheet time: 15mins

Name
Class
Date
1.

What is the Full form of DBMS?

a)

Data of Binary Management System

b)

Database Management System

c)

Database Management Service

d)

Data Backup Management System

2.

Which type of data can be stored in the database?

a)

Image oriented data

b)

Text, files containing data

c)

Data in the form of audio or video

d)

All of the above

3.

Which of the following is not an example of DBMS?

a)

MySQL

b)

Microsoft Acess

c)

IBM DB2

d)

Google

4.

Which of the following is known as a set of entities of the same type that share same properties, or attributes?

a)

Relation set

b)

Tuples

c)

Entity set

d)

Entity Relation model

5.

What does an RDBMS consist of?

a)

Collection of Records

b)

Collection of Keys

c)

Collection of Tables

d)

Collection of Fields

6.

The values appearing in given attributes of any tuple in the referencing relation must likewise occur in specified attributes of at least one tuple in the referenced relation, according to _____________________ integrity constraint.

a)

Referential

b)

Primary

c)

Referencing

d)

Specific

7.

______________ is a set of one or more attributes taken collectively to uniquely identify a record.

a)

Primary Key

b)

Foreign key

c)

Super key

d)

Candidate key

8.

Which command is used to remove a relation from an SQL?

a)

Drop table

b)

Delete

c)

Purge

d)

Remove

9.

Which of the following command is correct to delete the values in the relation teaches?

a)

Delete from teaches;

b)

Delete from teaches where Id =’Null’;

c)

Remove table teaches;

d)

Drop table teaches;

10.

Which forms have a relation that contains information about a single entity?

a)

4NF

b)

2NF

c)

5NF

d)

3NF

11.

Why the following statement is erroneous?

SELECT dept_name, ID, avg (salary)

FROM instructor

GROUP BY dept_name;

a)

Dept_id should not be used in group by clause

b)

Group by clause is not valid in this query

c)

Avg(salary) should not be selected

d)

None

12.

In which of the following formats data is stored in the database management system?

a)

Image

b)

Text

c)

Table

d)

Graph

13.

Which of the following is not a feature of DBMS?

a)

Minimum Duplication and Redundancy of Data

b)

High Level of Security

c)

Single-user Access only

d)

Support ACID Property

14.

The DBMS acts as an interface between ________________ and ________________ of an enterprise-class system.

a)

Data and the DBMS

b)

Application and SQL

c)

Database application and the database

d)

The user and the software

15.

What does a foreign key combined with a primary key create?

a)

Network model between the tables that connect them

b)

Parent-Child relationship between the tables that connects them

c)

One to many relationship between the tables that connects them

d)

All of the mentioned