wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

DBMS

Total questions: 45

Worksheet time: 22mins

Name
Class
Date
1.

Which of the following is a property of database

a)

Represents some aspect of the real world

b)

Logically related collection of data

c)

Built, and populated with data for a specific purpose

d)

All the above

2.

A database management system (DBMS) is a collection of programs that enables users to

a)

create a database

b)

manipulate a database

c)

both create and manipulate a database

d)

for storing data only

3.

The database and DBMS software together is called a ________________

a)

Database system

b)

Data Model

c)

Application Program

d)

System software

4.

Who is responsible for authorizing access to the database, coordinating and monitoring its use

a)

Database programmer

b)

System Analyst

c)

DBA

d)

Specialised user

5.

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

6.

Procedural language among the following is __________

a)

Domain relational calculus

b)

Tuple relational calculus

c)

Relational algebra

d)

Query language

7.

The database schema written in

a)

HLL

b)

DML

c)

DDL

d)

DCL

8.

Data about data is normally termed as:

a)

Directory

b)

Data Bank

c)

Meta data

d)

none of these

9.

Collection of information stored in a Database at a particular moment is:

a)

View

b)

Schema

c)

instance

d)

None of these

10.

An Association between Student and a course is:

a)

1:1 relationship

b)

1:M relationship

c)

M:N relationship

d)

None of these

11.

This is a level of the DBMS architecture that is the "top level" and it is also called the "view level" because several users can view their desired data from this level, which is internally fetched from the database with the help of conceptual and internal level mapping. 

a)

EXTERNAL LEVEL

b)

CONCEPTUAL LEVEL

c)

INTERNAL LEVEL

12.

This is a level of the DBMS architecture that is also called the logical level. The whole design of the database, such as relationships among data, schema of data, etc., is described at this level.

a)

EXTERNAL LEVEL

b)

CONCEPTUAL LEVEL

c)

INTERNAL LEVEL

13.

This is a level of the DBMS architecture that is also known as the physical level because it describes how the data is actually stored in the storage devices. This level is also responsible for allocating space to the data, and this is the lowest level of the architecture.

a)

EXTERNAL LEVEL

b)

CONCEPTUAL LEVEL

c)

INTERNAL LEVEL

14.

The result of combining, comparing, and performing calculations from raw material

a)

Data

b)

Information

c)

Database Management

15.

______________ is a raw material from which you can draw conclusions

a)

Data

b)

Information

16.

A relational database stores information in tables with rows and columns

a)

True

b)

False

17.

____________ is a software that controls the storage, organization, and retrieval of data

a)

DBMS

b)

Databse

c)

Data

18.

Which of the following statements contains an error?

a)

Select * from emp where empid = 10003;

b)

Select empid from emp where empid = 10006;

c)

Select empid from emp;

d)

Select empid where empid = 1009 and lastname = ‘GELLER’;

19.

To remove a relation from an SQL database, we use the ______ command.

a)

delete

b)

drop

c)

remove

d)

none of these

20.

can a primary key be null

a)

yes

b)

no

21.

A ____________ refers to the data files that contains records, which have a small, fixed number of fields, without any structured relationship.

a)

Flat file database

b)

Relational database

22.

All the _______________ in a table are called fields.

a)

rows

b)

columns

c)

cells

23.

The rows in a table are called _______________.

a)

data

b)

records

c)

queries

24.

A database stores a vast amount of data, but _____________ helps us to retrieve the filtered data based upon some conditions.

a)

forms

b)

reports

c)

queries

25.

_____________ are the user friendly interfaces that facilitates the process of entering data in tables and queries.

a)

Fields

b)

Form

c)

Report

26.

CREATE TABLE employee (name VARCHAR, id INTEGER)

What type of statement is this?

a)

DML

b)

DDL

c)

View

d)

Integrity constraint

27.

Which word is missing from the following SQL statement?


Select * table_name

a)

With

b)

Where

c)

From

d)

And

28.

How do we select all rows for the "Design" table?

a)

SELECT * FROM Design

b)

SELECT [All] FROM Design

c)

SELECT star from Design

d)

SELECT FROM Design

29.

In the given query which of the keyword has to be inserted?

INSERT INTO employee _____ (1002,'Joey',2000);

a)

table

b)

values

c)

from

d)

relation

30.

Identify the following the correct way/s to delete all rows at a time from salary table.

a)

DELETE * FROM salary;

b)

TRUNCATE TABLE salary;

c)

DELETE FROM SALARY;

d)

TRUNCATE TABLE FROM salary;

31.

Which one of the following is commonly used to define the overall design of the database?

a)

Application program

b)

Data definition language

c)

Schema

d)

Source code

32.

A Relational database consists of a collection of

a)

Tables

b)

Fields

c)

Records

d)

Keys

33.

In relational model, the row of table is known to be ?

a)

Relation

b)

Entity field

c)

Tuple

d)

Attribute

34.

What do you mean by one to many relationships?

a)

One class may have many teachers

b)

One teacher can have many classes

c)

Many classes may have many teachers

d)

Many teachers may have many classes

35.

The union of primary keys of the related entity sets becomes a -------------------------- of the relation ?

a)

Super Key

b)

Candidate key

c)

Foreign key

d)

Primary key

36.

By default the UPDATE SQL clause can _____________

a)

update only one row at a time

b)

update more than one row at a time

c)

delete more than one row at a time

d)

delete only one row at a time

37.

Which one of the following cannot be taken as a primary key?

a)

Student_Id

b)

Register_number

c)

Dept_id

d)

Street_name

38.

The command used to delete a particular column in a relation is ____________

a)

A.UPDATE TABLE

b)

B.TRUNCATE COLUMN

c)

C.ALTER , DROP

d)

D.DELETE COLUMN

39.
A database entity is also known as:
a)
a table
b)
a field
c)
a row
d)
a report
40.
Which of the following is NOT a type of SQL constraint?
a)
Primary Key
b)
Foreign Key
c)
Alternate Key
d)
Unique
e)
NOT NULL
41.

SELECT * FROM cars WHERE Doors > 3

would return how many records?

a)

1

b)

2

c)

3

d)

4

42.

SELECT * FROM Students WHERE Gender="Female" AND Class=2.2

would return how many records?

a)

1

b)

2

c)

3

d)

4

43.

With SQL, how can you insert a new record into the "Persons" table?

a)

INSERT ('Jimmy', 'Jackson') INTO Persons

b)

INSERT VALUES ('Jimmy', 'Jackson') INTO Persons

c)

INSERT INTO Persons VALUES ('Jimmy', 'Jackson')

44.

A data analyst wants to retrieve only records from a database that have matching values in two different tables. Which JOIN function should they use?

a)

LEFT JOIN

b)

RIGHT JOIN

c)

OUTER JOIN

d)

INNER JOIN

45.

A list of the attributes we wish to appear in the result is displayed in ___ operation.

a)

Select

b)

Project

c)

Union

d)

Rename