wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Database Creation Quiz

Total questions: 20

Worksheet time: 13mins

Name
Class
Date
1.

What is the first step in creating a database according to the Rock Bands tutorial?

a)

Design the table

b)

Load Access

c)

Enter table name

d)

Click VIEW

2.

What should you name the blank desktop database in the tutorial?

a)

Bands.accdb

b)

Music.accdb

c)

RockBands.accdb

d)

Database.accdb

3.

What is the table name you need to enter in the design step?

a)

tblMusic

b)

tblBands

c)

tblArtists

d)

tblSongs

4.

What is the ID known as in a relational database?

a)

Foreign Key

b)

Secondary Key

c)

Primary Key

d)

Composite Key

5.

Which field type is used for the 'BandName' in the database?

a)

Long Text

b)

Short Text

c)

Number

d)

Currency

6.

What field type is used for 'YearFormed' in the database?

a)

Currency

b)

Short Text

c)

Date/Time

d)

Number

7.

What is the first step in creating a second table called tblBandMembers?

a)

Click VIEW

b)

Click CREATE

c)

Click SAVE

d)

Click DELETE

8.

What data type should be used for the BandID in the tblBandMembers table?

a)

Text

b)

Date

c)

Number

d)

Currency

9.

What must the BandID match in the tblBandMembers table?

a)

The name of the band

b)

The ID used in the first table

c)

The position of the member

d)

The date of creation

10.

What is the ID known as in a relational database?

a)

Foreign Key

b)

Primary Key

c)

Secondary Key

d)

Composite Key

11.

Which tool do you use to add a relationship between two tables in a database?

a)

DATABASE TOOLS > Relationships

b)

FILE > New

c)

HOME > View

d)

CREATE > Table

12.

What action should you take to see related records in another table after double-clicking tblBands?

a)

Click the minus sign (-)

b)

Click the plus sign (+)

c)

Click the refresh button

d)

Click the delete button

13.

What is the purpose of SQL in a database?

a)

To create graphics

b)

To write, search or edit the contents of the database

c)

To design web pages

d)

To write emails

14.

What is the first step to create a new query in the document?

a)

Click on FILE

b)

Click on CREATE>QUERY WIZARD

c)

Click on VIEW>SQL VIEW

d)

Click on DATABASE TOOLS

15.

What SQL command is used to select the ID and BandName from tblBands?

a)

SELECT ID, BandName from tblBands;

b)

INSERT INTO tblBands (ID, BandName);

c)

DELETE FROM tblBands WHERE ID = 1;

d)

UPDATE tblBands SET BandName = 'NewName';

16.

What is the purpose of clicking the 'Run' button in the query tab?

a)

To delete the query

b)

To execute the query and generate output

c)

To save the query

d)

To close the query tab

17.

Which SQL command is used to add a new band named "Black Crows"?

a)

UPDATE tblBands SET BandName = "Black Crows"

b)

DELETE FROM tblBands WHERE BandName = "Black Crows"

c)

INSERT INTO tblBands (BandName) values ("Black Crows")

d)

SELECT * FROM tblBands WHERE BandName = "Black Crows"

18.

What SQL command is used to delete a record from a table?

a)

INSERT INTO

b)

UPDATE

c)

DELETE FROM

d)

SELECT

19.

Which option should be selected to ensure changes in one table affect the other?

a)

Enforce referential integrity

b)

Add a new relationship

c)

Delete the existing relationship

d)

Change the table structure

20.

Draw how a database is represented in a network diagram. (a barrel)