0% found this document useful (0 votes)
3 views10 pages

Chapter 3 Test Questions Studentversion

Chapter 3 of 'Modern Database Management' focuses on the Enhanced E-R Model, covering concepts such as attribute inheritance, supertypes and subtypes, and the processes of specialization and generalization. It also discusses the relational data model, including primary keys, foreign keys, and normalization principles. The chapter includes multiple-choice questions to test understanding of these concepts.

Uploaded by

yasuowibu21
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views10 pages

Chapter 3 Test Questions Studentversion

Chapter 3 of 'Modern Database Management' focuses on the Enhanced E-R Model, covering concepts such as attribute inheritance, supertypes and subtypes, and the processes of specialization and generalization. It also discusses the relational data model, including primary keys, foreign keys, and normalization principles. The chapter includes multiple-choice questions to test understanding of these concepts.

Uploaded by

yasuowibu21
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 10

Modern Database Management, 13e (Hoffer)

Chapter 3 The Enhanced E-R Model

1) The property by which subtype entities possess the values of all attributes of a supertype is
called:
A) hierarchy reception.
B) class management.
C) multiple inheritance.
D) attribute inheritance.
Answer:

2) Which of the following is a generic entity type that has a relationship with one or more
subtypes?
A) Megatype
B) Supertype
C) Subgroup
D) Class
Answer

3) Given the following entities, which of the choices below would be the most complicated?

Automobile: VIN, EngineSize, NumberOfDoors, NumberOfPassengers, FuelType, Transmission


SUV: VIN, EngineSize, NumberOfPassengers, NoWheelDrive, FuelType, Transmission
Truck: VIN, EngineSize, NoWheelDrive, FuelType, Transmission, Payload

A) Define one vehicle entity type to hold all entities.


B) Define a separate entity type for each entity.
C) Define a supertype called vehicle and make each of the entities subtypes.
D) Keep only the Truck entity type.
Answer:

4) Subtypes should be used when:


A) there are attributes that apply to some but not all instances of an entity type.
B) supertypes relate to objects outside the business.
C) the instances of a subtype do not participate in a relationship that is unique to that subtype.
D) a recursive relationship is needed.
Answer:

5) In the figure below, which of the following apply to both OUTPATIENTs and
RESIDENT_PATIENTs?

1
Copyright © 2019 Pearson Education, Inc.
A) Checkback_Date
B) Date_Discharged
C) Patient_Name
D) XML
Answer:
6) In the figure below, which of the following is a subtype of patient?

2
Copyright © 2019 Pearson Education, Inc.
A) Outpatient
B) Physician
C) Bed
D) Date_Hired
Answer

7) The process of defining one or more subtypes of a supertype and forming relationships is
called:
A) specialization.
B) generalization.
C) creating discord.
D) selecting classes.
Answer:
8) In the figure below, to which of the following entities are the entities "CAR" and "TRUCK"
generalized?

A) Make
B) Vehicle
C) Model
D) Price
Answer:
.

3
Copyright © 2019 Pearson Education, Inc.
9) The process of defining a more general entity type from a set of more specialized entity types
is called:
A) generalization.
B) specialization.
C) normalization.
D) extrapolation.
Answer:

10) The following figure is an example of:

A) partial specialization.
B) completeness.
C) total specialization.
D) disjointness.
Answer:

11) The ________ rule specifies that an entity instance of a supertype is allowed not to belong to
any subtype.
A) semi-specialization
B) total specialization
C) partial specialization
D) disjointness
Answer

12) The ________ rule specifies that each entity instance of the supertype must be a member of
some subtype in the relationship.
A) semi-specialization
B) total specialization
C) partial specialization
D) total convergence
Answer:

4
Copyright © 2019 Pearson Education, Inc.
1) A form of database design which maps conceptual requirements is called:
A) logical designs.
B) response designs.
C) security design.
D) physical design.
Answer
2) Data is represented in the form of:
A) data trees.
B) tables.
C) data notes.
D) chairs.
Answer
3) A two-dimensional table of data sometimes is called a:
A) group.
B) set.
C) declaration.
D) relation.
Answer

4) ________ is a component of the relational data model included to specify business rules to
maintain the integrity of data when they are manipulated.
A) Business rule constraint
B) Data integrity
C) Business integrity
D) Data structure
Answer:
5) An attribute (or attributes) that uniquely identifies each row in a relation is called a:
A) column.
B) foreign field.
C) primary key.
D) duplicate key.
Answer:
6) An attribute in a relation of a database that serves as the primary key of another relation in the
same database is called a:
A) link attribute.
B) link key.
C) foreign key.
D) foreign attribute.
Answer
7) A primary key whose value is unique across all relations is called a(n):
A) global primary key.
B) inter-table primary key.
C) enterprise key.
D) foreign global key.

8) A primary key that consists of more than one attribute is called a:


A) foreign key.
5
Copyright © 2019 Pearson Education, Inc.
B) composite key.
C) multivalued key.
D) cardinal key.
Answer
9) In the SQL language, the ________ statement is used to make table definitions.
A) create session
B) create table
C) create index
D) select
Answer

10) In the figure below, the primary key for "Order Line" is which type of key?

A) Composite
B) Foreign
C) Standard
D) Grouped
Answer:

11) Which of the following is NOT a reason to create an instance of a relational schema with
sample data?
A) Sample data can be used to improve user communications.
6
Copyright © 2019 Pearson Education, Inc.
B) Sample data can be used for prototype generation.
C) Sample data can reverse database implementation errors.
D) Sample data provide a convenient way to check the accuracy of your design.
Answer:

12) A domain definition consists of all of the following components EXCEPT:


A) domain name.
B) data type.
C) integrity constraints.
D) size.
Answer:
13) Which of the following are properties of relations?
A) Each attribute has the same name.
B) No two rows in a relation are identical.
C) There are multivalued attributes in a relation.
D) All columns are numeric.
Answer:

14) Which of the following violates the atomic property of relations?


A) Sam
B) Hinz
C) Sam Hinz
D) Atomic
Answer
15) The entity integrity rule states that:
A) no primary key attribute can be null.
B) referential integrity must be maintained across all entities.
C) each entity must have a primary key.
D) a primary key must have only one attribute.
Answer:

16) The ________ states that no primary key attribute may be null.
A) referential integrity constraint
B) entity integrity rule
C) partial specialization rule
D) range domain rule
Answer

17) In the figure below, Customer_ID in the CUSTOMER Table is which type of key?

7
Copyright © 2019 Pearson Education, Inc.
A) Composite
B) Candidate
C) Standard
D) Grouped
Answer:

18) All of the following are the main goals of normalization EXCEPT:
A) minimize data redundancy.
B) simplify the enforcement of referential integrity.
C) maximize storage space.
D) make it easier to maintain data.
Answer:
19) When all multivalued attributes have been removed from a relation, it is said to be in:
A) first normal form.
B) second normal form.
C) Boyce-Codd normal form.
D) third normal form.
Answer

20) The normal form which removes any remaining functional dependencies because there was
more than one primary key for the same nonkeys is called:
A) fifth normal form.
B) fourth normal form.
C) Boyce-Codd normal form.
8
Copyright © 2019 Pearson Education, Inc.
D) sixth normal form.
Answer:

21) The normal form which deals with multivalued dependencies is called:
A) fifth normal form.
B) fourth normal form.
C) Boyce-Codd normal form.
D) sixth normal form.
Answer

22) A relation that contains no multivalued attributes and has nonkey attributes solely dependent
on the primary key but contains transitive dependencies is in which normal form?
A) First
B) Second
C) Third
D) Fourth
Answer:
23) A constraint between two attributes is called a(n):
A) functional relation.
B) attribute dependency.
C) functional dependency.
D) functional relation constraint.
Answer:

24) A candidate key must satisfy all of the following conditions EXCEPT:
A) the key must uniquely identify the row.
B) the key must indicate the row's position in the table.
C) the key must be nonredundant.
D) each nonkey attribute is functionally dependent upon it.
Answer:
25) The attribute on the left-hand side of the arrow in a functional dependency is the:
A) candidate key.
B) determinant.
C) foreign key.
D) primary key.
Answer:

26) A functional dependency in which one or more nonkey attributes are functionally dependent
on part, but not all, of the primary key is called a ________ dependency.
A) partial key-based
B) partial functional
C) cross key
D) merged relation
Answer:
27) A functional dependency between two or more nonkey attributes is called a:
A) partial functional dependency.
B) partial nonkey dependency.
9
Copyright © 2019 Pearson Education, Inc.
C) transitive dependency.
D) partial transitive dependency.
Answer

28) ________ problems are encountered when removing data with transitive dependencies.
A) Insertion
B) Modification
C) Deletion
D) Merging
Answer:

29) The need to ________ relations commonly occurs when different views need to be
integrated.
A) metadata
B) system
C) drop
D) merge
Answer
30) Two or more attributes having different names but the same meaning are called:
A) homonyms.
B) aliases.
C) synonyms.
D) alternate attributes.

31) An attribute that may have more than one meaning is called a(n):
A) homonym.
B) alias.
C) double defined attribute.
D) synonym.
Answer:

10
Copyright © 2019 Pearson Education, Inc.

You might also like