Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
Database Design Application
Quiz 7: Normalization of Relational Tables
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 21
Multiple Choice
Figuer: The table STUDENTA has the following meaning. A student may have several majors and several minors; the choice of majors and minors is independent of each other. Each student has a unique name. The table has only one candidate key. STUDENTA
NAME
MAJOR
MINOR
GREEN
MATH
INFO
GREEN
MATH
MKTG
GREEN
PHILO
MKTG
HONEY
INFO
MATH
LAMPO
MKTG
MGT
Takker
MKTG
MGT
YONA
INFO
MATH
\begin{array} { | l | l | l | } \hline \text { NAME } & \text { MAJOR } & \text { MINOR } \\\hline \text { GREEN } & \text { MATH } & \text { INFO } \\\hline \text { GREEN } & \text { MATH } & \text { MKTG } \\\hline \text { GREEN } & \text { PHILO } & \text { MKTG } \\\hline \text { HONEY } & \text { INFO } & \text { MATH } \\\hline \text { LAMPO } & \text { MKTG } & \text { MGT } \\\hline \text { Takker } & \text { MKTG } & \text { MGT } \\\hline \text { YONA } & \text { INFO } & \text { MATH } \\\hline\end{array}
NAME
GREEN
GREEN
GREEN
HONEY
LAMPO
Takker
YONA
MAJOR
MATH
MATH
PHILO
INFO
MKTG
MKTG
INFO
MINOR
INFO
MKTG
MKTG
MATH
MGT
MGT
MATH
-The following is a functional dependency in the table STUDENTA:
Question 22
Multiple Choice
Figuer: Name is the unique candidate key in the table STUDENT. Each row in the table describes a different student. A student may only have one major and one minor. The choice of a major is independent of the choice of a minor STUDENT
NAME
AGE
MAJOR
MINOR
GREEN
26
MATH
INFO
HONEY
18
INFO
MATH
LAMPOC
33
MKTG
MGT
TAKKER
45
MKTG
MGT
TRAN
45
MATH
INFF
YONAR
28
INFO
MATH
\begin{array} { | l | l | l | l | } \hline \text { NAME } & \text { AGE } & \text { MAJOR } & \text { MINOR } \\\hline \text { GREEN } & 26 & \text { MATH } & \text { INFO } \\\hline \text { HONEY } & 18 & \text { INFO } & \text { MATH } \\\hline \text { LAMPOC } & 33 & \text { MKTG } & \text { MGT } \\\hline \text { TAKKER } & 45 & \text { MKTG } & \text { MGT } \\\hline \text { TRAN } & 45 & \text { MATH } & \text { INFF } \\\hline \text { YONAR } & 28 & \text { INFO } & \text { MATH } \\\hline\end{array}
NAME
GREEN
HONEY
LAMPOC
TAKKER
TRAN
YONAR
AGE
26
18
33
45
45
28
MAJOR
MATH
INFO
MKTG
MKTG
MATH
INFO
MINOR
INFO
MATH
MGT
MGT
INFF
MATH
-The following is a functional dependency in the table STUDENT:
Question 23
True/False
A database design with many tables results in the database being easier to change but more difficult to query.
Question 24
Multiple Choice
Figuer: The table STUDENTB has the following meaning. A student may have one major only and several minors; the choice of the major and of minors is independent of each other. Each student has a unique name. The table has only one candidate key. STUDENTB
NAME
MAJOR
MINOR
GREEN
MATH
INFO
GREEN
MATH
MKTG
HONEY
INFO
MATH
HONEY
INFO
MGT
LAMPOC
MKTG
MGT
TAKKER
MKTG
MGT
YONA
INFO
MATH
\begin{array} { | l | l | l | } \hline \text { NAME } & \text { MAJOR } & \text { MINOR } \\\hline \text { GREEN } & \text { MATH } & \text { INFO } \\\hline \text { GREEN } & \text { MATH } & \text { MKTG } \\\hline \text { HONEY } & \text { INFO } & \text { MATH } \\\hline \text { HONEY } & \text { INFO } & \text { MGT } \\\hline \text { LAMPOC } & \text { MKTG } & \text { MGT } \\\hline \text { TAKKER } & \text { MKTG } & \text { MGT } \\\hline \text { YONA } & \text { INFO } & \text { MATH } \\\hline\end{array}
NAME
GREEN
GREEN
HONEY
HONEY
LAMPOC
TAKKER
YONA
MAJOR
MATH
MATH
INFO
INFO
MKTG
MKTG
INFO
MINOR
INFO
MKTG
MATH
MGT
MGT
MGT
MATH
-The following is a functional dependency in the table STUDENTB:
Question 25
Multiple Choice
Figuer: The table STUDENTA has the following meaning. A student may have several majors and several minors; the choice of majors and minors is independent of each other. Each student has a unique name. The table has only one candidate key. STUDENTA
NAME
MAJOR
MINOR
GREEN
MATH
INFO
GREEN
MATH
MKTG
GREEN
PHILO
MKTG
HONEY
INFO
MATH
LAMPO
MKTG
MGT
Takker
MKTG
MGT
YONA
INFO
MATH
\begin{array} { | l | l | l | } \hline \text { NAME } & \text { MAJOR } & \text { MINOR } \\\hline \text { GREEN } & \text { MATH } & \text { INFO } \\\hline \text { GREEN } & \text { MATH } & \text { MKTG } \\\hline \text { GREEN } & \text { PHILO } & \text { MKTG } \\\hline \text { HONEY } & \text { INFO } & \text { MATH } \\\hline \text { LAMPO } & \text { MKTG } & \text { MGT } \\\hline \text { Takker } & \text { MKTG } & \text { MGT } \\\hline \text { YONA } & \text { INFO } & \text { MATH } \\\hline\end{array}
NAME
GREEN
GREEN
GREEN
HONEY
LAMPO
Takker
YONA
MAJOR
MATH
MATH
PHILO
INFO
MKTG
MKTG
INFO
MINOR
INFO
MKTG
MKTG
MATH
MGT
MGT
MATH
-The following is a multivalued dependency in the table STUDENTA:
Question 26
True/False
An experienced database designer always tries to achieve at least 3NF in all of their tables.
Question 27
True/False
Normalization techniques may be used in database development to improve the design that results from the Entity Relationship approach,but you cannot directly build database tables from the functional dependencies.