wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Advance Database Pretest

Total questions: 200

Worksheet time: 2hrs 20mins

Name
Class
Date
1.

_________ is a collection of facts, figures, objects, symbols, and events from different sources.

a)

Information

b)

Data

c)

Database

d)

Key

2.

Collection of information that is organized so that it can be easily accessed, managed and update _________.

a)

Information

b)

Entity

c)

Data

d)

Database

3.

A data type representing whole numbers

a)

String

b)

Float

c)

Integer

d)

Date

4.

Type of attribute, which is atomic value, means it cannot be divided further. Ex is student phone number.

a)

Attribute

b)

Derived attribute

c)

Single- value attribute

d)

Simple attribute

5.

What is the name of the given picture?

a)

WAMPP Server

b)

XAMPP Server

c)

Entity Relationship Diagram

d)

None of the above

6.

ERD stands for

a)

Entity Relationship Diagram

b)

Entire Relations Diagram

c)

Entities Relationship Model

d)

Entity Relationship Distribute

7.

A data type representing numbers with fractional parts

a)

Integer

b)

Character

c)

Float

d)

Boolean

8.

________ is an attribute or collection of attributes that uniquely identifies an entity among entity set.

a)

Super key

b)

Primary key

c)

Unique

d)

Key

9.

Attributes that contain more than one value. For example a person, contain more than one phone number, email, etc.

a)

Derived attributes

b)

Multi-value attributes

c)

Single- value attribute

d)

Composite attribute

10.

One entity set from set A can be associated with at most one entity set of B and vice versa is called _________.

a)

One to many

b)

Many to many

c)

Many to one

d)

One to one

11.

Entities are represented by means of

(a)  

12.

Relationship are represented by

a)

Diamond shape

b)

Rectangle shape

c)

Circle shape

d)

Square shape

13.

Type of database that the data is organized based on table with rows and columns.

a)

Key value

b)

Database

c)

No SQL database

d)

Relational database

14.

Data type that stores character strings (letters, numbers and special characters)

a)

variable

b)

Varchar

c)

String

d)

Integer

15.

__________ is a designated attribute (column) that can reliably identify and distinguish between each individual record in a table.

a)

Primary key

b)

Key

c)

Candidate key

d)

Single key

16.

update guirreRose set guirre_strand = 'TVL' where deptno = 30;


This is rejected, why is it rejected?

a)

Dept is not a key preserved base table.

b)

Because there is an aggregation function

c)

There is a check option.

17.

SQL> create view guirreRose as

2 select empno, ename, sal, comm, dept.deptno, dname, loc

3 from emp, dept

4 where emp.deptno = dept.deptno;


View created.


The user then runs:


update guirreRose set loc = 'CASHEL' where deptno = 30;


Is the command accepted or rejected?

a)

Accepted

b)

Rejected

18.

SQL> create view guirreRose as

2 select empno, ename, sal, comm, dept.deptno, dname, loc

3 from emp, dept

4 where emp.deptno = dept.deptno;


View created.


The user then runs:


update guirreRose set ename = 'ROSE' where empno = 7934;


Is this accepted or rejected?

a)

Accepted

b)

Rejected

19.

Trigger is invoked before/after data row is:

a)

deleted

b)

updated

c)

inserted

d)

all answers are correct

20.
Below are the Data Definition Command, EXCEPT
a)
CREATE
b)
ALTER
c)
MERGE
d)
SELECT
21.

Which of the following is the correct command to create a view?

a)

CREATE VIEW guirreRose AS

b)

SELECT VIEW guirreRose FROM

c)

CREATE TABLE VIEW guirreRose AS

d)

CREATE VIEW TABLE guirreRose FROM

22.
Below are the procedural SQL that can be used to enhance the power of SQL, EXCEPT:
a)
Triggers
b)
Stored procedures
c)
Function
d)
View
23.
Assume that you have the following:
CREATE FUNCTION totalPaidByCust(custID INT)
........
END
If you want to query the function, the command will be:
a)
CALL totalPaidByCust(3);
b)
SELECT totalPaidByCust(3);
c)
EXECUTE totalPaidByCust(3);
d)
None of the answer is correct
24.

Given the syntax below what is the attribute name:


CREATE TABLE guirreRose. guirre_BSIS (guirre_Score INT (3) NOT NULL), ENGINE=INNODB;

a)

guirreRose

b)

guirre_BSIS

c)

guirre_Score

25.

Given the syntax below, its accepted or rejected?


ALTER TABLE dbName. table_name CHANGE ATTRIB NAME (original guirre_attrib_name new_guirre_attrib_name DATATYPE (DATA LENGTH) NULL), ENGINE=INNODB;

a)

Accepted

b)

Rejected

26.

What is the codes of the output above:

a)

INSERT INTO guirreRose.guirreCampus`

(`guirre_bpc_campus`,` guirre_course`, `guirre_year`, `guirre_section`) VALUES ('ANGAT', 'COMSEC','2','A')

b)

CREATE guirreRose.guirreCampus`(`guirre_bpc_campus`,

` guirre_course`, `guirre_year`, `guirre_section`) VALUES ('ANGAT', 'COMSEC','2','A')

c)

UPDATE guirreRose.guirreCampus`(`guirre_bpc_campus`,

` guirre_course`, `guirre_year`, `guirre_section`) VALUES ('ANGAT', 'COMSEC','2','A')

d)

ALTER guirreRose.guirreCampus`(`guirre_bpc_campus`,

` guirre_course`, `guirre_year`, `guirre_section`) VALUES ('ANGAT', 'COMSEC','2','A')

27.

Identify the attribute/s from the codes below:


UPDATE `college_applications` SET

`year` = '2' WHERE

`college_applications`.`id` = 0519;

a)

year

b)

id

c)

year and id

d)

college applications

28.

ALTER TABLE guirreRose. guirre_bsis CHANGE guirre_sec (guirre_sec new_guirre_section VARCHAR (1) NOT NULL) ENGINE=INNODB;


What would be the new attribute name?

a)

guirreRose

b)

guirre_bsis

c)

guirre_sec

d)

guirre_section

29.

Data Definition Language

a)

Insert, Update, Delete, Select

b)

Insert, Create, Delete, Select

c)

Create, Alter, Drop, Truncate

d)

Insert, Alter, Drop, Truncate

30.

Data Manipulation Language (DML)

a)

Insert

b)

Update

c)

Create

d)

Select

e)

Truncate

31.

The following are the fields of application of database except?

a)

Surveys

b)

Online Transactions

c)

Trading goods

d)

Manufacturing

e)

Chemical Factory of Waste Materials

32.

Which of the following are the drawbacks of using file systems to store data. Please select all that applies.

a)

Data redundancy

b)

Data inconsistency

c)

Integrity problems

d)

Difficulty in accessing data

e)

Data isolation

33.

This level of abstraction describes how a record is stored. What is level is this?

a)

Physical Level

b)

View Level

c)

Logical Level

34.

This level of abstraction describes data stored in database, and the relationships among the data. What is level is this?

a)

Physical Level

b)

View Level

c)

Logical Level

35.

_____ is the logical structure of the database. What is blank refers to?

a)

Schema

b)

Instance

36.

_____ is the actual content of the database at a particular point in time. What is blank refers to?

a)

Schema

b)

Instance

37.

Which of the following is/are types of data models? Select all that applies.

a)

Entity-Relationship model

b)

Relational model

c)

Object-oriented model

d)

Structural model

e)

Network model

38.

The database schema is written in __________. What does the blank refers to?

a)

DDL

b)

DML

39.

SQL means ____?

a)

Selection Query Language

b)

Search Query Language

c)

Structured Query Language

40.

What refers to a collection of operations that performs a single logical function in a database application?

a)

Transaction Management

b)

Database Administrator

c)

Storage Management

d)

Database Users

41.

The symbol of greater than use in inserting text and numeric data.

a)

*

b)

>

c)

&

42.

Division symbol in spreadsheet.

a)

/

b)

+

c)

=

43.

Concatenation (joins text)

a)

/

b)

&

c)

*

44.

Exponentiation (raised to the power)

a)

=

b)

*

c)

^

45.

Multiplication symbol in Microsoft Excel

a)

&

b)

*

c)

^

46.

A spreadsheet is like a filing system or a calculator?

a)

/

b)

X

47.

Text entry is use for titles, headings and other notes.

a)

/

b)

X

48.

Status bar is where data or formulas you enter into a worksheet appear for the active cell.

a)

/

b)

X

49.

The formula starts with a plus sign.

a)

/

b)

X

50.

Numeric data composed of numbers that can add, subtract, multiply divide and use of formulas.

a)

/

b)

X

51.

The symbol of greater than use in inserting text and numeric data.

a)

*

b)

>

c)

&

52.

When inserting a formula, always start with

a)

-

b)

*

c)

+

d)

=

53.
This instructs the software to perform a calculation.
a)
value
b)
label
c)
formula
d)
text box
54.
Groups of cells are called:
a)
list
b)
range
c)
set
d)
None of these
55.
Formulas cannot contain spaces.
a)
True
b)
False
56.

To sort data in Excel, go to the __________ ribbon.

a)

Home

b)

Data

c)

Insert

d)

View

57.

If I want to find an average of cells A1 through A25, which formula would I use?

a)

=average(A1:A25)

b)

=avg(A1:A25)

c)

=average(A1-A25)

58.

What is this icon?

a)

Zoom

b)

Sort and Filter

c)

Symbol

d)

Merge and Center

59.

To arrange data in ascending order of age we will

a)

Filter it

b)

Sort it

c)

Apply Conditional Formatting

60.

What can you use to help you see only what you want to see by hiding everything else.

a)

Filters

b)

Functions

c)

Sorts

61.
What is the formula to find the lowest number in cells C1:C4?
a)
=average(C1:C4)
b)
=max(C1:C4)
c)
=min(C1:C4)
d)
=sum(C1:C4)
62.

Sandra is creating a formula to subtract the values in cells B4 and C4. Which formula should she use?

a)

=B4+C4

b)

=B4-C4

c)

=B4*C4

d)

=B4/C4

63.

Which of these functions will you use if you wish to evaluate more than one condition?

a)

IF()

b)

IFS()

c)

IFELSE()

d)

IFELSES()

64.

Which of these functions reverses the condition?

a)

AND()

b)

OR()

c)

NOT()

d)

NOR()

65.

In cell A1 we have the following "CHN_123456", what function help us removing the "CHN_" from that text?

a)

=SUBSTITUTE

(A1,"CHN_","")

b)

=REPLACE

(A1,"CHN_","")

c)

=CHANGE

(A1,"CHN_","")

d)

=LEFT

(A1,"CHN_","")

66.

If I have the text "123456 - 010" in cell A1, what is the formula that allows me to call the first 6 characters?

a)

=LEFT(A1,3)

b)

=RIGHT(A1,6)

c)

=LEFT(A1,6)

d)

=RIGHT(A1,3)

67.

What is the function that allow us to remove unwanted spaces in a text?

a)

=SUBSTITUTE

b)

=REPLACE

c)

=VALUE

d)

=TRIM

68.

What are the main advantages of using the INDEX and MATCH functions in Excel?

a)

They can perform complex calculations

b)

They can handle multiple criteria

c)

They are faster than VLOOKUP

d)

They create dynamic charts

69.

When might you use the Index-Match combination instead of VLOOKUP?

a)

When you need to perform calculations on the result

b)

When you want to search in a single column

c)

When you need to retrieve data from another worksheet

d)

When working with text data only

70.

What is the primary advantage of using XLOOKUP over VLOOKUP?

a)

XLOOKUP is faster

b)

XLOOKUP can handle approximate matches

c)

XLOOKUP can handle multiple criteria

d)

XLOOKUP is an older function

71.

Which error-handling feature is available in XLOOKUP but not in VLOOKUP?

a)

#N/A error handling

b)

Custom error messages

c)

Error propagation

d)

None of the above

72.

What is the primary purpose of the INDIRECT function?

a)

To perform mathematical calculations

b)

To create dynamic cell references

c)

To handle text manipulation

d)

To calculate averages

73.

In which scenario might you use the INDIRECT function in financial models?

a)

Calculating averages

b)

Creating dynamic charts

c)

Handling error messages

d)

Extracting data from other workbooks

74.

What is OFFSET primarily used for in Excel?

a)

Calculating financial ratios

b)

Creating dynamic ranges

c)

Generating random numbers

d)

Sorting data

75.

How can OFFSET be used in financial modeling?

a)

For sorting data

b)

For calculating averages

c)

For trend analysis and rolling summaries

d)

For data validation

76.

What is a notable advantage of using array formulas in Excel?

a)

They are faster than regular formulas

b)

They can handle only single criteria

c)

They are easier to understand

d)

They cannot handle irregular data sets

77.

When might you use array formulas in financial analysis?

a)

For simple calculations

b)

When dealing with structured data only

c)

When handling irregular data sets

d)

For basic data extraction

78.

What does VBA stand for in Excel?

a)

Visual Basic for Application

b)

Visual Basic for Analysis

c)

Very Basic Automation

d)

Virtual Business Applications

79.

How can VBA be used in Excel for financial analysis?

a)

To create pivot tables

b)

To format cells

c)

To automate repetitive tasks

d)

To import data from external sources

80.

What is the main benefit of using named ranges in Excel?

a)

They make formulas more complex

b)

They improve data accuracy

c)

They slow down worksheet performance

d)

They are used for text formatting

81.

How can named ranges be used in financial modeling?

a)

For creating custom charts

b)

For speeding up data entry

c)

For error reduction in formulas

d)

For importing data from external sources

82.

What is the primary purpose of the CHOOSE function?

a)

To perform lookup operations

b)

To calculate averages

c)

To create dynamic charts

d)

To sort data

83.

When might you use the CHOOSE function in financial modeling?

a)

For sorting data

b)

For performing complex calculations

c)

For dynamic scenario analysis

d)

For text manipulation

84.

How can array formulas be used in financial analysis?

a)

For basic calculations

b)

For data validation

c)

For portfolio optimisation

d)

For sorting data

85.

What is a consideration when using array formulas?

a)

They are always faster than regular formulas

b)

They can only handle structured data

c)

They may require more processing power

d)

They are limited to simple calculations

86.

How can VBA be used to enhance financial reporting?

a)

To create dynamic charts

b)

To automate data cleansing

c)

To calculate averages

d)

To import data from external sources

87.

What is one of the main benefits of using VBA in financial analysis workflows?

a)

It requires no programming knowledge

b)

It slows down data processing

c)

It reduces customisation options

d)

It allows for advanced scenario analysis and modeling

88.

9.

With SQL, how do you select a column named "FirstName" from a table named "Person"?

a)

SELECT FirstName FROM Person

b)

SELECT Person.FirstName

c)

EXTRACT FirstName FROM Person

d)

SELECT FROM Person.FirstName

89.

What does the CREATE TABLE command do?

a)

Adds data to a table

b)

Defines a new table and its structure

c)

Updates data in a table

d)

Deletes a table

90.

Which command did Arjun use to add a column to the employees table?

a)

UPDATE

b)

INSERT

c)

ALTER TABLE

d)

CREATE TABLE

91.

What does the DISTINCT clause achieve in a query?

a)

Filters data based on a condition

b)

Eliminates duplicate values

c)

Joins two tables

d)

Displays all rows from a table

92.

How did Arjun filter employees who joined in 2023?

a)

Using the GROUP BY clause

b)

Using the WHERE clause with a condition on YEAR(joining_date)

c)

Using the ORDER BY clause

d)

Using the LIKE operator

93.

What is the default order in the ORDER BY clause?

a)

Descending

b)

Ascending

c)

Random

d)

Alphabetical

94.

Which operator is used for pattern matching in SQL?

a)

BETWEEN

b)

LIKE

c)

IN

d)

IS NULL

95.

What is the purpose of the JOIN operation?

a)

Filters rows based on a condition

b)

Combines rows from two or more tables based on common fields

c)

Groups rows by a column

d)

Orders rows in ascending or descending order

96.

Which aggregate function calculates the total salary of employees?

a)

COUNT

b)

AVG

c)

SUM

d)

MAX

97.

What does the IS NULL condition check for?

a)

Rows with zero values

b)

Rows with missing or undefined values

c)

Rows that match a given pattern

d)

Rows that meet a specific condition

98.

What would this query achieve: SELECT department, SUM(salary) FROM employees GROUP BY department;

a)

Filters employees in specific departments

b)

Groups employees by department and calculates total salary per department

c)

Joins the employees table with the department table

d)

Updates the salary of employees in each department

99.

Which of the following is an environment?

a)

supermarket

b)

staff

c)

customer

d)

vehicle

100.

Which of the following is false about the entity relationship diagram?

a)

Entities are represented by rectangles.

b)

All simple attributes are represented with single-lined ovals.

c)

Multi-valued attributes are represented with double-lined ovals.

d)

A derived attribute is connected to the entity by broken lines.

101.

Which of the following is not a notation of the entity relationship diagram?

a)

Crow's foot

b)

Crow's nest

c)

Chen

d)

UML class diagram

102.

Which of the following is false about the entity relationship model (ERM)?

a)

The ERM is a model representing the conceptual design of the database.

b)

An ERM is represented by an entity relationship diagram (ERD).

c)

An ERM needs to be translated to the data model used by the DBMS, during the logical design.

d)

The ERM represents data in rows and columns.

103.

Based on the diagram, which is the key attribute?

a)

STUDENT

b)

matrix

c)

address

d)

age

104.

Based on the diagram, which is the entity?

a)

STUDENT

b)

matrix

c)

address

d)

age

105.

Based on the diagram, which is the composite attribute?

a)

STUDENT

b)

matrix

c)

address

d)

age

106.

Based on the diagram, which is the derived attribute?

a)

STUDENT

b)

matrix

c)

address

d)

age

107.

Based on the diagram, how many simple attributes are there?

a)

11

b)

10

c)

4

d)

2

108.

Based on the diagram, how many multiple-valued attributes are there?

a)

10

b)

9

c)

4

d)

2

109.

Semantic relationships take a higher and more non-specific view of the relationship.

a)

True

b)

False

110.

What is a candidate key?

a)

Any attribute, or group of attributes, that can uniquely identify a tuple in a relation.

b)

Any attribute, or group of attributes, that has no super key subsets.

c)

Any attribute, or group of attributes, that has been selected to be the unique identifier of each tuple in a relation.

d)

A combination of two fields that together can uniquely identify a record.

111.

Complete the sentence below.

A _____ key is an attribute of a table that matches a primary key attribute in another table to create a relationship.

a)

Candidate

b)

Primary

c)

Foreign

d)

National

112.

A composite key is a combination of two fields that together can uniquely identify a record.

a)

True

b)

False

113.

Complete the sentence below.

A ____________ relationship is where a single record of a table is related to a single record of another table.

a)

Many-to-many

b)

Many-to-one

c)

One-to-one

d)

One-to-many

114.

Complete the sentence below.

________ integrity is a rule that states that every entity must have a primary key field and the values in that field must be unique to each record.

a)

Entity

b)

Primary

c)

True

d)

False

115.

What type of relationship should we not use in our database structure?

a)

One-to-One

b)

One-to-Many

c)

Many-to-Many

116.

Complete the sentence below.

A ______ key is any attribute or group of attributes, that can uniquely identify a tuple in a relation.

a)

minimal

b)

super

c)

higher

d)

fantastic

117.

Referential Integrity is a rule states that every foreign key value must match the primary key value of a record in another table, or must be null.

a)

True

b)

False

118.

What type of relationship is shown in this image?

a)

One-to-One

b)

One-to-Many

c)

Many-to-Many

119.

What is the primary role of a primary key in a table?

a)

To store the most frequently accessed data

b)

To uniquely identify each record in the table

c)

To maintain referential integrity

d)

To create relationships between tables

120.

Which of the following is an example of a one-to-many relationship?

a)

A student enrolled in multiple courses

b)

An employee working in a single department

c)

A product supplied by multiple suppliers

d)

A customer placing multiple orders

121.

What is a foreign key?

a)

A key that provides a unique identifier for a table

b)

A key that links two tables together

c)

A key that allows many-to-many relationships

d)

A key that can only be used in one table

122.

In a many-to-many relationship, what is typically used to link two tables?

a)

Foreign key

b)

Junction table

c)

Composite key

d)

Primary key

123.

Which of the following is a requirement for referential integrity?

4 lines
124.

Foreign key values must match the primary key in the related table

a)

Foreign key values must match the primary key in the related table

b)

Foreign key values must be null

c)

Primary key values can be duplicated

d)

Foreign key values must always be unique

125.

What is the main function of a junction table?

a)

To store additional information about a foreign key

b)

To establish a one-to-one relationship between tables

c)

To resolve many-to-many relationships between tables

d)

To provide alternative foreign keys for a table

126.

If a foreign key in a child table does not have a matching primary key in the parent table, what database issue arises?

a)

Data inconsistency

b)

Referential integrity violation

c)

Data redundancy

d)

Data normalization

127.

What is a composite key?

a)

A key composed of multiple foreign keys

b)

A key made up of two or more columns to uniquely identify records

c)

A key that enforces referential integrity

d)

A key used only in junction tables

128.

Which of the following best describes a one-to-one relationship?

a)

One record in a table is related to many records in another table

b)

Many records in one table are related to many records in another table

c)

One record in a table is related to one record in another table

d)

A single record in a table can have multiple foreign keys

129.

In a many-to-many relationship, how many foreign keys does a junction table typically have?

a)

One

b)

Two

c)

Three

d)

None

130.

Why is it important that foreign keys are non-null in certain cases?

a)

It ensures every record has a matching value in the related table

b)

It ensures referential integrity is violated

c)

It prevents data duplication across tables

d)

It makes foreign keys unique

131.

Which of the following statements about primary keys is true?

a)

Primary keys can contain null values

b)

A table can have multiple primary keys

c)

Primary keys must be unique for each record in the table

d)

A primary key can be duplicated in another table

132.

What is the main purpose of enforcing referential integrity?

a)

To prevent data duplication within a table

b)

To ensure related data is kept consistent between tables

c)

To speed up query performance

d)

To simplify database design

133.

If a table contains two foreign keys, it is most likely to be:

a)

A parent table in a one-to-one relationship

b)

A junction table in a many-to-many relationship

134.

Which of the following is NOT a valid reason for using a junction table?

a)

A) To resolve a many-to-many relationship

b)

B) To store metadata about the relationship between two tables

c)

C) To provide additional data integrity checks

d)

D) To enforce a one-to-one relationship

135.

A primary key that consists of more than one column is called:

a)

A) A composite key

b)

B) A duplicate key

c)

C) A concatenated key

d)

D) A unique key

136.

Which of the following describes a duplicate foreign key?

a)

A) A foreign key that appears more than once in the same table

b)

B) A foreign key that links the same two tables twice

c)

C) A foreign key that exists in two tables with different values

d)

D) A foreign key that exists in two different tables and points to the same primary key

137.

Which of the following fields would most likely be a primary key?

a)

A) CustomerName

b)

B) ProductID

c)

C) OrderDate

d)

D) Price

138.

Why are foreign keys important in relational databases?

a)

A) They allow one-to-one relationships

b)

B) They enforce referential integrity between related tables

c)

C) They help in creating indexes

139.

What is a flat file database?

a)

Contains a single table

b)

Two or more linked tables

c)

Used to create formula's

140.

What is a relational database?

a)

Contains a single table

b)

Two or more linked tables

c)

Used to create formula's

141.

What is a primary key?

a)

A single unique key

b)

A unique key used as a second key in another table

c)

To ensure that data is secure

142.

What is a foreign key?

a)

A single unique key

b)

A unique key used as a second key in another table

c)

To ensure that data is secure

143.

What is Customer ID in the appointment table?

a)

A primary key

b)

A Criteria

c)

A foreign key

d)

A type

144.

What is this?

a)

A flat file database

b)

A source file

c)

The relationships between tables

d)

A query

145.

Looking at the Order Info table, which fields are foreign keys?

a)

Order ID

b)

Customer ID

c)

Book ID

d)

Order Date

146.

Looking at the Order Info table, which fields are primary keys?

a)

Order ID

b)

Customer ID

c)

Book ID

d)

Order Date

147.

We can create a relational database using the software ..

a)

MS Excel

b)

MS Access

c)

MS Word

d)

All the above

148.

The table in this picture, is shown in

a)

design view

b)

datasheet view

c)

access view

149.

The table in this picture, is shown in

a)

design view

b)

datasheet view

c)

access view

150.

To find out, or change the data types for each field in a database table, we need to open it in ..

a)

datasheet view

b)

design view

151.

A field with datatype Autonumber cannot be manually inserted or edited

a)

true

b)

false

152.

A field with datatype Autonumber cannot be manually inserted or edited

a)

true

b)

false

153.

What is the full form of DBMS

a)

Data and business management software

b)

Database management system

c)

Database arrangement system

d)

Database align software

154.

_________ can not be created in Microsoft access

a)

Tables

b)

Queries

c)

Reports

d)

Image

155.

Which software air used for flat file database

a)

MS access

b)

MS Excel

c)

Oracle

d)

Database

156.
What is letter "A" showing?
a)
Where to configure the Join properties
b)
Where to Run the query
c)
Where to configure which fields and criteria are used for the Query
157.
A query can get its data from
a)
a. one or more tables.
b)
b. existing queries.
c)
c. a combination of a and b.
d)
d. all of the above.
158.

What is the criteria for the query shown in the image

a)

Teacher

b)

No Degree

c)

No

d)

Yes Degree

159.
The Query button is located on the _______ tab
a)
 Home
b)
File
c)
Create
d)
Export
160.
What function enables you to ask questions about the data stored in a database and returns the answers based on your criteria?
a)
Query
b)
Form
c)
Report
d)
Table
161.
Click ___________ to show the results of a query
a)
Execute
b)
Show
c)
Run
d)
Results
162.

What is a flat file database?

a)

Contains a single table

b)

Two or more linked tables

c)

Used to create formula's

163.

What is a relational database?

a)

Contains a single table

b)

Two or more linked tables

c)

Used to create formula's

164.

What is a primary key?

a)

A single unique key

b)

A unique key used as a second key in another table

c)

To ensure that data is secure

165.

What is a foreign key?

a)

A single unique key

b)

A unique key used as a second key in another table

c)

To ensure that data is secure

166.

What is Customer ID in the appointment table?

a)

A primary key

b)

A Criteria

c)

A foreign key

d)

A type

167.

What is this?

a)

A flat file database

b)

A source file

c)

The relationships between tables

d)

A query

168.

Looking at the Order Info table, which fields are foreign keys?

a)

Order ID

b)

Customer ID

c)

Book ID

d)

Order Date

169.

Looking at the Order Info table, which fields are primary keys?

a)

Order ID

b)

Customer ID

c)

Book ID

d)

Order Date

170.

We can create a relational database using the software ..

a)

MS Excel

b)

MS Access

c)

MS Word

d)

All the above

171.

The table in this picture, is shown in

a)

design view

b)

datasheet view

c)

access view

172.

The table in this picture, is shown in

a)

design view

b)

datasheet view

c)

access view

173.

To find out, or change the data types for each field in a database table, we need to open it in ..

a)

datasheet view

b)

design view

174.

A field with datatype Autonumber cannot be manually inserted or edited

a)

true

b)

false

175.

A field with datatype Autonumber cannot be manually inserted or edited

a)

true

b)

false

176.

What is the full form of DBMS

a)

Data and business management software

b)

Database management system

c)

Database arrangement system

d)

Database align software

177.

_________ can not be created in Microsoft access

a)

Tables

b)

Queries

c)

Reports

d)

Image

178.

Which software air used for flat file database

a)

MS access

b)

MS Excel

c)

Oracle

d)

Database

179.
What is letter "A" showing?
a)
Where to configure the Join properties
b)
Where to Run the query
c)
Where to configure which fields and criteria are used for the Query
180.
A query can get its data from
a)
a. one or more tables.
b)
b. existing queries.
c)
c. a combination of a and b.
d)
d. all of the above.
181.

What is the criteria for the query shown in the image

a)

Teacher

b)

No Degree

c)

No

d)

Yes Degree

182.
The Query button is located on the _______ tab
a)
 Home
b)
File
c)
Create
d)
Export
183.
What function enables you to ask questions about the data stored in a database and returns the answers based on your criteria?
a)
Query
b)
Form
c)
Report
d)
Table
184.
Click ___________ to show the results of a query
a)
Execute
b)
Show
c)
Run
d)
Results
185.
A field that is a primary key in the same table or another table. It is the method of recording relations in a relational database.
a)
foreign key
b)
surrogate key
c)
name
d)
key field
186.
For the following two ENTITIES, which is the appropriate relationship:
RULER / COUNTRY
a)
One to One
b)
One to Many
c)
Many to Many
187.

For the following two ENTITIES, which is the appropriate relationship:

PRODUCT /PRICE

a)

One to One

b)

One to Many

c)

Many to Many

188.
For the following two ENTITIES, which is the appropriate relationship:
ZOO / ANIMAL
a)
One to One
b)
One to Many
c)
Many to Many
189.

For the following two ENTITIES, which is the appropriate relationship:

RECIPE/ INGREDIENT

a)

One to One

b)

One to Many

c)

Many to Many

190.
For the following two ENTITIES, which is the appropriate relationship:
DOCTOR / PATIENT
a)
One to One
b)
One to Many
c)
Many to Many
191.
For the following two ENTITIES, which is the appropriate relationship:
SIM CARD / PHONE NUMBER
a)
One to One
b)
One to Many
c)
Many to Many
192.
For the following two ENTITIES, which is the appropriate relationship:
COUNTRY / CAPITAL CITY
a)
One to One
b)
One to Many
c)
Many to Many
193.

For the following two ENTITIES, which is the appropriate relationship:

ACTOR / MOVIE

a)

One to One

b)

One to Many

c)

Many to Many

194.
For the following two ENTITIES, which is the appropriate relationship:
CUSTOMER / ORDER
a)
One to One
b)
One to Many
c)
Many to Many
195.

For the following two ENTITIES, which is the appropriate relationship:

STUDENT/SUBJECT

a)

One to One

b)

One to Many

c)

Many to Many

196.
For the following two ENTITIES, which is the appropriate relationship:
HOUSE/POSTCODE
a)
One to One
b)
One to Many
c)
Many to Many
197.
In Figure F, the relationship of Doctors to Billing is: 
a)
one-to-one. 
b)
one-to-many.
c)
many-to-many.
d)
many-to-one. 
198.
In Figure F, the relationship of Doctors to Billing is: 
a)
one-to-one. 
b)
one-to-many.
c)
many-to-many.
d)
many-to-one. 
199.
In Figure F, the relationship of Medications to Patients is:
a)
one-to-one.
b)
one-to-many.
c)
many-to-many.
d)
many-to-one. 
200.
In Figure F, which is the junction table? 
a)
Billing   
b)
Doctors 
c)
Medications
d)
Patients