Deck 6: Database Design 2: Design Method

Full screen (f)
exit full mode
Question
The second step in creating a user view is to represent the user view as a collection of tables.​
Use Space or
up arrow
down arrow
to flip the card.
Question
The primary key is a unique identifier.​
Question
When you use an E-R diagram to represent a database,it visually illustrates all the information listed in the DBDL.​
Question
​Careful planning in the early stages of the normalization process will usually avoid the need to consider fourth normal form.
Question
In DBDL,you represent a table by listing all columns and then underlining the primary key.​
Question
The information-level design methodology involves representing the individual user view as a collection of tables,refining them to eliminate any problems,and then merging them into a cumulative design.
Question
The use of an "m" and an "n" in an E-R diagram indicates a many-to-many relationship.​
Question
A design that supports all user views is called a constructive design.​
Question
When you combine third normal form tables,the result will always be in third normal form.​
Question
​In an E-R diagram,a dashed line represents an identifying relationship and a solid line represents a nonidentifying relationship.
Question
The first step in creating a user view is to normalize the tables.​
Question
In an entity-relationship diagram,rectangles represent foreign keys.​
Question
When provided with a user view or some sort of stated requirement,you must develop a collection of tables that will support it.​
Question
In a one-to-many relationship,the primary key of the "many" table becomes the foreign key of the "one" table.​
Question
A weak entity is a column or collection of columns that could have been chosen as a primary key,but was not.​
Question
​There are two types of primary keys that you can use in your database design.
Question
Nulls are used when a value is either unknown or inapplicable.​
Question
The basic relationships among entities are: one-to-many,many-to-many,and one-to-one.​
Question
You create a many-to-many relationship by creating a new table whose primary key is the combination of the primary keys of the original tables.​
Question
​A foreign key is a column or collection of columns in one table that is required to match the value of the primary key for some row in another table,or be null.
Question
The type of information collected on the survey form that describes how data is updated is ____.​

A) ​Attribute information
B) ​Processing information
C) ​Relationships
D) ​Entity information
Question
The properties of the entities you choose as you design the user view will become the ____ in the appropriate tables.​

A) ​rows
B) ​columns
C) ​data
D) ​DBMS
Question
An alternative to the primary key of a table is listed with the ____ abbreviation in DBDL.​

A) ​SK
B) ​FK
C) ​PK
D) ​AK
Question
After the information-level design is completed,____ is the next step.​

A) ​The physical-level design
B) ​The modality-level design
C) ​The DBMS-level design
D) ​The table-level design
Question
Convert the following table to first normal form:​ Branch (BranchNum,BranchName,(BookCode,Title,OnHand))

A) ​Branch (BranchNum, BranchName)?Book (BookCode, Title)
B) ​Branch (BranchNum, BranchName)
C) ​Book (BookCode, Title)
D) ​Branch (BranchNum, BranchName, BookCode, Title, OnHand )
Question
If each employee works in a single department and each department has only one employee,the relationship between employees and departments is ____.​

A) ​one-to-one
B) ​one-to-many
C) ​many-to-one
D) ​many-to-many
Question
When implementing the physical-level design,for secondary keys,you must ensure that it is possible to retrieve data rapidly on the basis of a value of the ____ key.​

A) ​primary
B) ​secondary
C) ​alternate
D) ​foreign
Question
A(n)____ is a primary key that consists of a column that uniquely identifies an entity,such as a person's Social Security number.​

A) ​surrogate key
B) ​weak entity
C) ​artificial key
D) ​natural key
Question
When a DBMS creates a(n)____ key,it is usually an automatic numbering data type,such as the Access AutoNumber data type.​

A) ​surrogate
B) ​artificial
C) ​natural
D) ​logical
Question
Which of the following shows sample DBDL documentation for the Employee table?​

A) ​Employee (EmployeeNum, LastName, FirstName, Street, City, State, PostalCode)
B) ​Employee (EmployeeNum, LastName, FirstName, Street, City, State, PostalCode)
C) ​Employee (EmployeeNum, LastName, FirstName, Street, City, State, PostalCode, (WageRate, SocSecNum, DepartmentNum) )
D) ​Employee (EmployeeNum, LastName, FirstName, Street, City, State, PostalCode, WageRate, SocSecNum, DepartmentNum)
AK SocSecNum
SK LastName
FK DepartmentNum→Department
Question
The crucial issue in making the determination between a single many-to-many-to-many relationship and two (or three)many-to-many relationships is the ____.​

A) ​independence
B) ​data dependence
C) ​redundancy
D) ​cardinality
Question
Combining the following two tables would result in ____.​ Employee (EmployeeNum,LastName,FirstName,WageRate,SocSecNum,DepartmentNum)
Employee (EmployeeNum,LastName,FirstName,Street,City,State,PostalCode)

A) ​Employee (EmployeeNum, LastName, FirstName, WageRate, SocSecNum, DepartmentNum, (Street, City, PostalCode) )
B) ​Employee (EmployeeNum, LastName, FirstName, WageRate, SocSecNum, DepartmentNum, Street, City, State, PostalCode)
C) ​Employee (EmployeeNum, LastName, FirstName, Street, City State, PostalCode, WageRate, SocSecNum)
D) ​Employee (EmployeeNum, LastName, FirstName, WageRate, SocSecNum, DepartmentNum, EmployeeNum, LastName, FirstName, Street, City, State, PostalCode )
Question
When designing a database,you might find it helpful to design a(n)____ to obtain the required information from users.​

A) ​E-R diagram
B) ​table
C) ​report
D) ​survey form
Question
An entity that does not require a relationship to another entity for identification is called a(n)____.​

A) ​alternative entity
B) ​foreign entity
C) ​independent entity
D) ​single entity
Question
A column that you create for an entity to serve solely as the primary key and that is visible to users is called a(n)____.​

A) ​synthetic key
B) ​weak entity
C) ​artificial key
D) ​natural key
Question
A natural key is also called a(n)____ key.​

A) ​surrogate
B) ​intelligent
C) ​secondary
D) ​defining
Question
A relationship that is necessary for identification is called a(n)____.​

A) ​objectifying relationship
B) ​merging relationship
C) ​identifying relationship
D) ​referential relationship
Question
Independent entities have ____ in an E-R diagram​

A) dashed borders​
B) ​dark backgrounds
C) ​square corners
D) ​rounded corners
Question
A set of requirements that is necessary to support the operations of a particular database user is known as a(n)____.​

A) user view
B) ​user table
C) ​user attribute
D) ​user field
Question
A(n)____ is a system-generated primary key that is usually hidden from users.​

A) ​weak entity
B) ​surrogate key
C) ​natural key
D) ​artificial key
Question
In the ____________________ design method,specific user requirements are synthesized into a design.​
Question
On an E-R diagram,the number closest to the relationship represents ____ cardinality.​

A) ​maximum
B) ​minimum
C) ​midvalue
D) ​largest
Question
During the ____________________ design,designers must consider the characteristics of the particular DBMS that the organization will use.​
Question
____ means that an entity has a minimum cardinality of zero.​

A) ​The entity has a mandatory role in the relationship.
B) ​The entity is not required in the relationship.
C) ​The entity should not be in the relationship as an attribute.
D) ​The entity must be listed with all zeroes in the data fields.
Question
​An entity that exists to implement a many-to-many relationship is called a(n)____.

A) ​composite entity
B) ​complex entity
C) ​complicated entity
D) ​circular entity
Question
____ means that an entity has a minimum cardinality of one.​

A) ​The entity is required in the relationship.
B) ​The entity is not required in the relationship.
C) ​The entity should not be in the relationship as an attribute.
D) ​The entity must be listed with all ones in the data fields.
Question
In the standard E-R diagrams,relationships are drawn as ____,with lines connecting the entities involved in relationships.​

A) ​rectangles
B) ​diamonds
C) ​circles
D) ​squares
Question
Columns that are of interest strictly for the purpose of retrieval are known as ____________________.​
Question
On an E-R diagram,the number closest to the rectangle represents ____ cardinality.​

A) ​maximum
B) ​minimum
C) ​midvalue
D) ​smallest
Question
On an E-R diagram,____________________ entities have rounded corners.​
Question
The ____________________ design method begins with a general database design that models the overall enterprise and repeatedly refines the model to achieve a design that supports all necessary applications.​
Question
____________________ key restrictions determine the relationships between tables.​
Question
The style of E-R diagram used in the text is ____________________.​
Question
​A relationship that is not necessary for identification is called a(n)____________________ relationship.
Question
If a many-to-many-to-many relationship is created when it is not appropriate to do so,the conversion to ____ normal form will correct the problem.​

A) ​first
B) ​second
C) ​third
D) ​fourth
Question
It is through foreign keys that you can create relationships among tables and enforce certain types of ____________________ constraints in a database.​
Question
In IDEF1X,the ____ is the symbol for category.​

A) ​square
B) ​rectangle
C) ​diamond
D) ​circle
Question
A subtype is called a(n)____ in IDEF1X terminology.​

A) ​dependent
B) ​inner type
C) ​specification
D) ​category
Question
For each table,you must identify the primary key and any alternate keys,secondary keys,and ____________________ keys.​
Question
Complete categories are represented by ____ line(s)below the category symbol.​

A) ​one
B) ​two
C) ​three
D) ​four
Question
An entity-relationship (E-R)model is an approach to representing data in a(n)____________________.​
Question
One way to indicate a one-to-many relationship is to place a crow's foot at the ____________________ end of the relationship.​
Question
A(n)____________________ is a special value that represents the absence of a value in a field.​
Question
Describe the different types of primary keys.​
Question
An entity that depends on another entity for its own existence is called a(n)____________________.​
Question
List the types of information that must be included on a survey form in order for it to be considered valuable to the design process.​
Question
How can you attempt to avoid the problem of creating a table that is not in third normal form?​
Question
When the existence of one entity depends on the existence of another related entity,there is a(n)____________________.​
Question
A(n)____________________ is essentially both an entity and a relationship and is represented in an E-R diagram by a diamond within a rectangle.​
Question
____________________ refers to the number of items that must be included in a relationship.​
Question
A weak entity corresponds to the term ____________________.​
Question
List the steps that must be followed for each user view,as suggested by the information-level design methodology.​
Question
You can recognize entity subtypes by the fact the primary key is also a(n)____________________.​
Question
Explain the difference between a minimum cardinality of zero and a minimum cardinality of one.​
Question
To obtain information about ____________________ you might ask users questions such as: "If you know a particular employee number,can you establish other information,such as employee name?"​
Unlock Deck
Sign up to unlock the cards in this deck!
Unlock Deck
Unlock Deck
1/75
auto play flashcards
Play
simple tutorial
Full screen (f)
exit full mode
Deck 6: Database Design 2: Design Method
1
The second step in creating a user view is to represent the user view as a collection of tables.​
False
2
The primary key is a unique identifier.​
True
3
When you use an E-R diagram to represent a database,it visually illustrates all the information listed in the DBDL.​
True
4
​Careful planning in the early stages of the normalization process will usually avoid the need to consider fourth normal form.
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
5
In DBDL,you represent a table by listing all columns and then underlining the primary key.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
6
The information-level design methodology involves representing the individual user view as a collection of tables,refining them to eliminate any problems,and then merging them into a cumulative design.
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
7
The use of an "m" and an "n" in an E-R diagram indicates a many-to-many relationship.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
8
A design that supports all user views is called a constructive design.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
9
When you combine third normal form tables,the result will always be in third normal form.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
10
​In an E-R diagram,a dashed line represents an identifying relationship and a solid line represents a nonidentifying relationship.
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
11
The first step in creating a user view is to normalize the tables.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
12
In an entity-relationship diagram,rectangles represent foreign keys.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
13
When provided with a user view or some sort of stated requirement,you must develop a collection of tables that will support it.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
14
In a one-to-many relationship,the primary key of the "many" table becomes the foreign key of the "one" table.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
15
A weak entity is a column or collection of columns that could have been chosen as a primary key,but was not.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
16
​There are two types of primary keys that you can use in your database design.
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
17
Nulls are used when a value is either unknown or inapplicable.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
18
The basic relationships among entities are: one-to-many,many-to-many,and one-to-one.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
19
You create a many-to-many relationship by creating a new table whose primary key is the combination of the primary keys of the original tables.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
20
​A foreign key is a column or collection of columns in one table that is required to match the value of the primary key for some row in another table,or be null.
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
21
The type of information collected on the survey form that describes how data is updated is ____.​

A) ​Attribute information
B) ​Processing information
C) ​Relationships
D) ​Entity information
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
22
The properties of the entities you choose as you design the user view will become the ____ in the appropriate tables.​

A) ​rows
B) ​columns
C) ​data
D) ​DBMS
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
23
An alternative to the primary key of a table is listed with the ____ abbreviation in DBDL.​

A) ​SK
B) ​FK
C) ​PK
D) ​AK
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
24
After the information-level design is completed,____ is the next step.​

A) ​The physical-level design
B) ​The modality-level design
C) ​The DBMS-level design
D) ​The table-level design
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
25
Convert the following table to first normal form:​ Branch (BranchNum,BranchName,(BookCode,Title,OnHand))

A) ​Branch (BranchNum, BranchName)?Book (BookCode, Title)
B) ​Branch (BranchNum, BranchName)
C) ​Book (BookCode, Title)
D) ​Branch (BranchNum, BranchName, BookCode, Title, OnHand )
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
26
If each employee works in a single department and each department has only one employee,the relationship between employees and departments is ____.​

A) ​one-to-one
B) ​one-to-many
C) ​many-to-one
D) ​many-to-many
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
27
When implementing the physical-level design,for secondary keys,you must ensure that it is possible to retrieve data rapidly on the basis of a value of the ____ key.​

A) ​primary
B) ​secondary
C) ​alternate
D) ​foreign
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
28
A(n)____ is a primary key that consists of a column that uniquely identifies an entity,such as a person's Social Security number.​

A) ​surrogate key
B) ​weak entity
C) ​artificial key
D) ​natural key
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
29
When a DBMS creates a(n)____ key,it is usually an automatic numbering data type,such as the Access AutoNumber data type.​

A) ​surrogate
B) ​artificial
C) ​natural
D) ​logical
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
30
Which of the following shows sample DBDL documentation for the Employee table?​

A) ​Employee (EmployeeNum, LastName, FirstName, Street, City, State, PostalCode)
B) ​Employee (EmployeeNum, LastName, FirstName, Street, City, State, PostalCode)
C) ​Employee (EmployeeNum, LastName, FirstName, Street, City, State, PostalCode, (WageRate, SocSecNum, DepartmentNum) )
D) ​Employee (EmployeeNum, LastName, FirstName, Street, City, State, PostalCode, WageRate, SocSecNum, DepartmentNum)
AK SocSecNum
SK LastName
FK DepartmentNum→Department
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
31
The crucial issue in making the determination between a single many-to-many-to-many relationship and two (or three)many-to-many relationships is the ____.​

A) ​independence
B) ​data dependence
C) ​redundancy
D) ​cardinality
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
32
Combining the following two tables would result in ____.​ Employee (EmployeeNum,LastName,FirstName,WageRate,SocSecNum,DepartmentNum)
Employee (EmployeeNum,LastName,FirstName,Street,City,State,PostalCode)

A) ​Employee (EmployeeNum, LastName, FirstName, WageRate, SocSecNum, DepartmentNum, (Street, City, PostalCode) )
B) ​Employee (EmployeeNum, LastName, FirstName, WageRate, SocSecNum, DepartmentNum, Street, City, State, PostalCode)
C) ​Employee (EmployeeNum, LastName, FirstName, Street, City State, PostalCode, WageRate, SocSecNum)
D) ​Employee (EmployeeNum, LastName, FirstName, WageRate, SocSecNum, DepartmentNum, EmployeeNum, LastName, FirstName, Street, City, State, PostalCode )
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
33
When designing a database,you might find it helpful to design a(n)____ to obtain the required information from users.​

A) ​E-R diagram
B) ​table
C) ​report
D) ​survey form
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
34
An entity that does not require a relationship to another entity for identification is called a(n)____.​

A) ​alternative entity
B) ​foreign entity
C) ​independent entity
D) ​single entity
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
35
A column that you create for an entity to serve solely as the primary key and that is visible to users is called a(n)____.​

A) ​synthetic key
B) ​weak entity
C) ​artificial key
D) ​natural key
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
36
A natural key is also called a(n)____ key.​

A) ​surrogate
B) ​intelligent
C) ​secondary
D) ​defining
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
37
A relationship that is necessary for identification is called a(n)____.​

A) ​objectifying relationship
B) ​merging relationship
C) ​identifying relationship
D) ​referential relationship
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
38
Independent entities have ____ in an E-R diagram​

A) dashed borders​
B) ​dark backgrounds
C) ​square corners
D) ​rounded corners
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
39
A set of requirements that is necessary to support the operations of a particular database user is known as a(n)____.​

A) user view
B) ​user table
C) ​user attribute
D) ​user field
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
40
A(n)____ is a system-generated primary key that is usually hidden from users.​

A) ​weak entity
B) ​surrogate key
C) ​natural key
D) ​artificial key
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
41
In the ____________________ design method,specific user requirements are synthesized into a design.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
42
On an E-R diagram,the number closest to the relationship represents ____ cardinality.​

A) ​maximum
B) ​minimum
C) ​midvalue
D) ​largest
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
43
During the ____________________ design,designers must consider the characteristics of the particular DBMS that the organization will use.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
44
____ means that an entity has a minimum cardinality of zero.​

A) ​The entity has a mandatory role in the relationship.
B) ​The entity is not required in the relationship.
C) ​The entity should not be in the relationship as an attribute.
D) ​The entity must be listed with all zeroes in the data fields.
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
45
​An entity that exists to implement a many-to-many relationship is called a(n)____.

A) ​composite entity
B) ​complex entity
C) ​complicated entity
D) ​circular entity
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
46
____ means that an entity has a minimum cardinality of one.​

A) ​The entity is required in the relationship.
B) ​The entity is not required in the relationship.
C) ​The entity should not be in the relationship as an attribute.
D) ​The entity must be listed with all ones in the data fields.
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
47
In the standard E-R diagrams,relationships are drawn as ____,with lines connecting the entities involved in relationships.​

A) ​rectangles
B) ​diamonds
C) ​circles
D) ​squares
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
48
Columns that are of interest strictly for the purpose of retrieval are known as ____________________.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
49
On an E-R diagram,the number closest to the rectangle represents ____ cardinality.​

A) ​maximum
B) ​minimum
C) ​midvalue
D) ​smallest
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
50
On an E-R diagram,____________________ entities have rounded corners.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
51
The ____________________ design method begins with a general database design that models the overall enterprise and repeatedly refines the model to achieve a design that supports all necessary applications.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
52
____________________ key restrictions determine the relationships between tables.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
53
The style of E-R diagram used in the text is ____________________.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
54
​A relationship that is not necessary for identification is called a(n)____________________ relationship.
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
55
If a many-to-many-to-many relationship is created when it is not appropriate to do so,the conversion to ____ normal form will correct the problem.​

A) ​first
B) ​second
C) ​third
D) ​fourth
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
56
It is through foreign keys that you can create relationships among tables and enforce certain types of ____________________ constraints in a database.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
57
In IDEF1X,the ____ is the symbol for category.​

A) ​square
B) ​rectangle
C) ​diamond
D) ​circle
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
58
A subtype is called a(n)____ in IDEF1X terminology.​

A) ​dependent
B) ​inner type
C) ​specification
D) ​category
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
59
For each table,you must identify the primary key and any alternate keys,secondary keys,and ____________________ keys.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
60
Complete categories are represented by ____ line(s)below the category symbol.​

A) ​one
B) ​two
C) ​three
D) ​four
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
61
An entity-relationship (E-R)model is an approach to representing data in a(n)____________________.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
62
One way to indicate a one-to-many relationship is to place a crow's foot at the ____________________ end of the relationship.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
63
A(n)____________________ is a special value that represents the absence of a value in a field.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
64
Describe the different types of primary keys.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
65
An entity that depends on another entity for its own existence is called a(n)____________________.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
66
List the types of information that must be included on a survey form in order for it to be considered valuable to the design process.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
67
How can you attempt to avoid the problem of creating a table that is not in third normal form?​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
68
When the existence of one entity depends on the existence of another related entity,there is a(n)____________________.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
69
A(n)____________________ is essentially both an entity and a relationship and is represented in an E-R diagram by a diamond within a rectangle.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
70
____________________ refers to the number of items that must be included in a relationship.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
71
A weak entity corresponds to the term ____________________.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
72
List the steps that must be followed for each user view,as suggested by the information-level design methodology.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
73
You can recognize entity subtypes by the fact the primary key is also a(n)____________________.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
74
Explain the difference between a minimum cardinality of zero and a minimum cardinality of one.​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
75
To obtain information about ____________________ you might ask users questions such as: "If you know a particular employee number,can you establish other information,such as employee name?"​
Unlock Deck
Unlock for access to all 75 flashcards in this deck.
Unlock Deck
k this deck
locked card icon
Unlock Deck
Unlock for access to all 75 flashcards in this deck.