Deck 9: Designing Databases

Full screen (f)
exit full mode
Question
Normalization helps build a data model that is simple, not redundant, and requires minimum maintenance.
Use Space or
up arrow
down arrow
to flip the card.
Question
The selection of data-storage technologies is made during the systems implementation and operation phase.
Question
During logic modeling, the normalized data requirements from all user interfaces are combined into one consolidated logical database model.
Question
Each column in a relation corresponds to an entity type.
Question
The selection of the appropriate data types of attributes from the logical database model is made during physical database design.
Question
Each row of a relation corresponds to a record that contains data values for an entity.
Question
In general, data structure refers to grouping attributes from the logical database model into physical records.
Question
Conceptual modeling is performed during systems design.
Question
During physical database design, relations from logical database design are translated into computer file specifications.
Question
Object-oriented database models are the most frequently used database technologies for new information systems development.
Question
The network database model is a popular database technology for new information systems.
Question
One of the purposes of logical and physical database design is to choose data-storage technologies that will efficiently, accurately, and securely process database activities.
Question
One property of a relation is that entries in columns are from the same set of values.
Question
A file organization is an arrangement of related records in secondary memory so that individual and groups of records can be stored, retrieved, and updated rapidly.
Question
Referencing a relation, the sequence of columns cannot be interchanged without changing the meaning or use of the relation.
Question
The primary deliverable from logical database design is a conceptual model.
Question
A relation corresponds to a computer file.
Question
Generally speaking, logical and physical database design is performed in parallel with other systems design steps.
Question
When using the normalized relation notation, the primary key attribute is indicated by a dashed underline.
Question
The network model is the most common style for a logical database model.
Question
A relation is said to be in second normal form if the primary key consists of only one attribute.
Question
A binary 1 to many relationship in an ER Diagram is represented by adding the primary key of the entity on the one side of the relationship as a foreign key to the entity on the many side.
Question
An attribute can be functionally dependent on more than one attribute.
Question
A well-structured relation contains data about two or more entities.
Question
When two relations, A and B, have a many-to-many relationship, we create a separate relation, C, to represent this.
Question
A key can be redundant.
Question
For a binary one-to-one relationship between two entities, A and B, the primary key of A becomes a foreign key in B and the primary key in B becomes a foreign key in A.
Question
A relation is in second normal form if every nonprimary key attribute is functionally dependent on the whole primary key.
Question
If for every valid value of A the value of B is determined by the value of A, then B is functionally dependent on A.
Question
A relation is said to be in second normal form if the primary key consists of a combination key, and the nonkey attributes are partially dependent on the primary key.
Question
The value of a key attribute in a relation must uniquely identify every row in the relation.
Question
A relation is said to be in second normal form when there are no transitive dependencies.
Question
Each entity type in an ER Diagram becomes an attribute.
Question
The creation of a separate relation is sometimes required to represent a relationship.
Question
The result of normalization is that every nonprimary key attribute depends upon the whole primary key and nothing but the primary key.
Question
Normalization is based on an analysis of weak entities.
Question
A business rule is an integrity constraint specifying that the value of an attribute in one relation depends on the value of the same attribute in another relation.
Question
Transitive attributes are attributes that determine other attributes.
Question
Referential integrity specifies that the value of an attribute of one relation depends on the existence of the same attribute in another relation.
Question
A corporal key is one assigned by the system.
Question
Two different names used for the same attribute is called a synonym.
Question
Two different names used for the same attribute is called a homonym.
Question
The hashed file organization determines the address for each row by using an algorithm.
Question
A primary key is converted in a hashed file organization.
Question
Generally speaking, a physical table always corresponds to a relation.
Question
Sequential files are practical for random row retrievals.
Question
View integration is the last step of logical database design.
Question
Indexes should be used generously for databases intended primarily to support data retrievals.
Question
Multiple key retrieval is possible with sequential file organization.
Question
Indexes should be used generously for databases that support transaction processing and other applications with heavy updating requirements.
Question
Denormalization reduces the chance of errors introduced by normalizing relations.
Question
When using the sequential file organization, the addition of rows requires rewriting the file.
Question
Denormalization is the process of splitting or combining normalized relations into physical tables based on EFFICIENCY of use of rows and fields.
Question
A default value is a value a field will assume unless an explicit value is entered for that field.
Question
Sequential retrieval on the primary key is impractical with the hashed file organization.
Question
A recursive foreign key is a foreign key in a relation that references the primary key value of the same relation.
Question
Efficient use of secondary storage and data processing speed are the two goals of physical table design.
Question
A data marker is a field of data that can be used to locate a related field or row of data.
Question
A null value is used to represent the zero digit in a relation.
Question
When modeling a many-to-many unary relationship, the primary key of the relation representing the relationship is always singular.
Question
File restoration can be achieved through backup copies of a file, audit trails, and row image files.
Question
Which of the following is NOT associated with logical and physical database design?

A) Structure the data in stable structures that are not likely to change over time and that have minimal redundancy.
B) The preparation of a final conceptual model and the implementation of the database.
C) Develop a logical database design from which we can do physical database design.
D) Develop a logical database design that reflects the actual data requirements that exist in the forms and reports of an information system.
E) Translate a relational database model into a technical file and database design.
Question
Which of the following is a purpose of logical model and physical database design?

A) Structure the data in unstable structures that are likely to change over time and that have extensive redundancy.
B) Develop a logical database to help identify a steering committee.
C) Develop a logical database design from which we can do physical database design.
D) Translate a relational database model into network database models.
E) Develop a marketing plan for both logical and physical database design.
Question
During logical database design, the work of all systems development team members is coordinated and shared through:

A) the project dictionary.
B) scheduled weekly meetings.
C) the project leader.
D) JAD sessions.
E) walkthroughs.
Question
Using the normalized relation notation, an attribute of a relation which is the primary key of another relation is indicated by:

A) an underline.
B) a circle.
C) a dashed underline.
D) italics.
E) a double-lined ellipse.
Question
During physical design, you typically don't consider:

A) the definitions of each attribute.
B) the descriptions of where and when data are entered, retrieved, deleted, and updated.
C) the expectations for response time and data integrity.
D) the descriptions of the file and database technologies to be used.
E) creating a new set of E-R models.
Question
Data security can be built into a file through encryption, passwords, or prohibiting users from directly manipulating a file.
Question
A named two-dimensional table of data is a(n):

A) network.
B) tree structure.
C) relation.
D) tuple.
E) object.
Question
Assume the structure of a relation is Employee (EmpID, Name, Dept, Salary). The number of attributes for this relation would:

A) be three.
B) be four.
C) be five.
D) be six.
E) vary depending upon the number of employees.
Question
Which of the following properties of a relation states that an entry at the intersection of each row and column is single-valued?

A) Entries in cells are simple.
B) Entries in columns are from the same set of values.
C) Each row is unique.
D) The sequence of rows is insignificant.
E) The sequence of columns can be interchanged.
Question
A data model that represents data in the form of tables or relations is called a(n):

A) hierarchical database model.
B) network database model.
C) relational database model.
D) hybrid database model.
E) object-oriented database model.
Question
Which of the following is NOT a key step in logical database design?

A) Combine normalized data requirements from all user interfaces into one consolidated logical database model.
B) Compare the consolidated logical database design with the translated E-R model and produce, through view integration, one final logical database design for the application.
C) Model how data flow through an information system, the relationships among the data flows, and how data come to be stored at specific locations.
D) Translate the conceptual E-R data model for the application into normalized data requirements.
E) Using normalization principles, develop a logical data model for each known user view for the application.
Question
Which of the following is NOT a True statement regarding a relation?

A) Each relation consists of a set of named columns and an arbitrary number of unnamed rows.
B) Each column in a relation corresponds to an attribute of that relation.
C) An entry at the intersection of each row and column has a single value.
D) The columns may not be interchanged or stored any sequence.
E) The rows may be interchanged or stored in any sequence.
Question
A relation that contains a minimum amount of redundancy and allows users to insert, modify, and delete the rows in a table without errors or inconsistencies is a(n):

A) independent relation.
B) simple relation.
C) unnormalized relation.
D) well-structured relation.
E) derived relation.
Question
The primary deliverable from logical database design is:

A) normalized relations.
B) design specifications.
C) an updated Baseline Project Plan.
D) a list of alternatives design strategies.
E) a production system.
Question
The most common style for a logical database model is the:

A) relational database model.
B) hierarchical database model.
C) network database model.
D) object-oriented database model.
E) hybrid database model.
Question
Designing the database for an Internet-based electronic commerce application differs significantly from the process followed when designing the database for other types of applications.
Question
The process of converting complex data structures into simple, stable data structures is referred to as:

A) normalization.
B) simplification.
C) structuring.
D) process modeling.
E) relational conversion.
Question
Key physical database design decisions typically do not include:

A) choosing the storage format for each attribute from the logical database model.
B) grouping attributes from the logical database model into physical records.
C) arranging related records in secondary memory so that individual and groups of records can be stored, retrieved, and updated rapidly.
D) selecting media and structures for storing data to make access more efficient.
E) conducting requirements structuring.
Question
Combining all normalized user views into one consolidated logical database model refers to:

A) normalization.
B) requirements structuring.
C) file integration.
D) view integration.
E) logic modeling.
Unlock Deck
Sign up to unlock the cards in this deck!
Unlock Deck
Unlock Deck
1/311
auto play flashcards
Play
simple tutorial
Full screen (f)
exit full mode
Deck 9: Designing Databases
1
Normalization helps build a data model that is simple, not redundant, and requires minimum maintenance.
True
2
The selection of data-storage technologies is made during the systems implementation and operation phase.
False
3
During logic modeling, the normalized data requirements from all user interfaces are combined into one consolidated logical database model.
False
4
Each column in a relation corresponds to an entity type.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
5
The selection of the appropriate data types of attributes from the logical database model is made during physical database design.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
6
Each row of a relation corresponds to a record that contains data values for an entity.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
7
In general, data structure refers to grouping attributes from the logical database model into physical records.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
8
Conceptual modeling is performed during systems design.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
9
During physical database design, relations from logical database design are translated into computer file specifications.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
10
Object-oriented database models are the most frequently used database technologies for new information systems development.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
11
The network database model is a popular database technology for new information systems.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
12
One of the purposes of logical and physical database design is to choose data-storage technologies that will efficiently, accurately, and securely process database activities.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
13
One property of a relation is that entries in columns are from the same set of values.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
14
A file organization is an arrangement of related records in secondary memory so that individual and groups of records can be stored, retrieved, and updated rapidly.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
15
Referencing a relation, the sequence of columns cannot be interchanged without changing the meaning or use of the relation.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
16
The primary deliverable from logical database design is a conceptual model.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
17
A relation corresponds to a computer file.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
18
Generally speaking, logical and physical database design is performed in parallel with other systems design steps.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
19
When using the normalized relation notation, the primary key attribute is indicated by a dashed underline.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
20
The network model is the most common style for a logical database model.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
21
A relation is said to be in second normal form if the primary key consists of only one attribute.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
22
A binary 1 to many relationship in an ER Diagram is represented by adding the primary key of the entity on the one side of the relationship as a foreign key to the entity on the many side.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
23
An attribute can be functionally dependent on more than one attribute.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
24
A well-structured relation contains data about two or more entities.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
25
When two relations, A and B, have a many-to-many relationship, we create a separate relation, C, to represent this.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
26
A key can be redundant.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
27
For a binary one-to-one relationship between two entities, A and B, the primary key of A becomes a foreign key in B and the primary key in B becomes a foreign key in A.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
28
A relation is in second normal form if every nonprimary key attribute is functionally dependent on the whole primary key.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
29
If for every valid value of A the value of B is determined by the value of A, then B is functionally dependent on A.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
30
A relation is said to be in second normal form if the primary key consists of a combination key, and the nonkey attributes are partially dependent on the primary key.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
31
The value of a key attribute in a relation must uniquely identify every row in the relation.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
32
A relation is said to be in second normal form when there are no transitive dependencies.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
33
Each entity type in an ER Diagram becomes an attribute.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
34
The creation of a separate relation is sometimes required to represent a relationship.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
35
The result of normalization is that every nonprimary key attribute depends upon the whole primary key and nothing but the primary key.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
36
Normalization is based on an analysis of weak entities.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
37
A business rule is an integrity constraint specifying that the value of an attribute in one relation depends on the value of the same attribute in another relation.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
38
Transitive attributes are attributes that determine other attributes.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
39
Referential integrity specifies that the value of an attribute of one relation depends on the existence of the same attribute in another relation.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
40
A corporal key is one assigned by the system.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
41
Two different names used for the same attribute is called a synonym.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
42
Two different names used for the same attribute is called a homonym.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
43
The hashed file organization determines the address for each row by using an algorithm.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
44
A primary key is converted in a hashed file organization.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
45
Generally speaking, a physical table always corresponds to a relation.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
46
Sequential files are practical for random row retrievals.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
47
View integration is the last step of logical database design.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
48
Indexes should be used generously for databases intended primarily to support data retrievals.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
49
Multiple key retrieval is possible with sequential file organization.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
50
Indexes should be used generously for databases that support transaction processing and other applications with heavy updating requirements.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
51
Denormalization reduces the chance of errors introduced by normalizing relations.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
52
When using the sequential file organization, the addition of rows requires rewriting the file.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
53
Denormalization is the process of splitting or combining normalized relations into physical tables based on EFFICIENCY of use of rows and fields.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
54
A default value is a value a field will assume unless an explicit value is entered for that field.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
55
Sequential retrieval on the primary key is impractical with the hashed file organization.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
56
A recursive foreign key is a foreign key in a relation that references the primary key value of the same relation.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
57
Efficient use of secondary storage and data processing speed are the two goals of physical table design.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
58
A data marker is a field of data that can be used to locate a related field or row of data.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
59
A null value is used to represent the zero digit in a relation.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
60
When modeling a many-to-many unary relationship, the primary key of the relation representing the relationship is always singular.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
61
File restoration can be achieved through backup copies of a file, audit trails, and row image files.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
62
Which of the following is NOT associated with logical and physical database design?

A) Structure the data in stable structures that are not likely to change over time and that have minimal redundancy.
B) The preparation of a final conceptual model and the implementation of the database.
C) Develop a logical database design from which we can do physical database design.
D) Develop a logical database design that reflects the actual data requirements that exist in the forms and reports of an information system.
E) Translate a relational database model into a technical file and database design.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
63
Which of the following is a purpose of logical model and physical database design?

A) Structure the data in unstable structures that are likely to change over time and that have extensive redundancy.
B) Develop a logical database to help identify a steering committee.
C) Develop a logical database design from which we can do physical database design.
D) Translate a relational database model into network database models.
E) Develop a marketing plan for both logical and physical database design.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
64
During logical database design, the work of all systems development team members is coordinated and shared through:

A) the project dictionary.
B) scheduled weekly meetings.
C) the project leader.
D) JAD sessions.
E) walkthroughs.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
65
Using the normalized relation notation, an attribute of a relation which is the primary key of another relation is indicated by:

A) an underline.
B) a circle.
C) a dashed underline.
D) italics.
E) a double-lined ellipse.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
66
During physical design, you typically don't consider:

A) the definitions of each attribute.
B) the descriptions of where and when data are entered, retrieved, deleted, and updated.
C) the expectations for response time and data integrity.
D) the descriptions of the file and database technologies to be used.
E) creating a new set of E-R models.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
67
Data security can be built into a file through encryption, passwords, or prohibiting users from directly manipulating a file.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
68
A named two-dimensional table of data is a(n):

A) network.
B) tree structure.
C) relation.
D) tuple.
E) object.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
69
Assume the structure of a relation is Employee (EmpID, Name, Dept, Salary). The number of attributes for this relation would:

A) be three.
B) be four.
C) be five.
D) be six.
E) vary depending upon the number of employees.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
70
Which of the following properties of a relation states that an entry at the intersection of each row and column is single-valued?

A) Entries in cells are simple.
B) Entries in columns are from the same set of values.
C) Each row is unique.
D) The sequence of rows is insignificant.
E) The sequence of columns can be interchanged.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
71
A data model that represents data in the form of tables or relations is called a(n):

A) hierarchical database model.
B) network database model.
C) relational database model.
D) hybrid database model.
E) object-oriented database model.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
72
Which of the following is NOT a key step in logical database design?

A) Combine normalized data requirements from all user interfaces into one consolidated logical database model.
B) Compare the consolidated logical database design with the translated E-R model and produce, through view integration, one final logical database design for the application.
C) Model how data flow through an information system, the relationships among the data flows, and how data come to be stored at specific locations.
D) Translate the conceptual E-R data model for the application into normalized data requirements.
E) Using normalization principles, develop a logical data model for each known user view for the application.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
73
Which of the following is NOT a True statement regarding a relation?

A) Each relation consists of a set of named columns and an arbitrary number of unnamed rows.
B) Each column in a relation corresponds to an attribute of that relation.
C) An entry at the intersection of each row and column has a single value.
D) The columns may not be interchanged or stored any sequence.
E) The rows may be interchanged or stored in any sequence.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
74
A relation that contains a minimum amount of redundancy and allows users to insert, modify, and delete the rows in a table without errors or inconsistencies is a(n):

A) independent relation.
B) simple relation.
C) unnormalized relation.
D) well-structured relation.
E) derived relation.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
75
The primary deliverable from logical database design is:

A) normalized relations.
B) design specifications.
C) an updated Baseline Project Plan.
D) a list of alternatives design strategies.
E) a production system.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
76
The most common style for a logical database model is the:

A) relational database model.
B) hierarchical database model.
C) network database model.
D) object-oriented database model.
E) hybrid database model.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
77
Designing the database for an Internet-based electronic commerce application differs significantly from the process followed when designing the database for other types of applications.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
78
The process of converting complex data structures into simple, stable data structures is referred to as:

A) normalization.
B) simplification.
C) structuring.
D) process modeling.
E) relational conversion.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
79
Key physical database design decisions typically do not include:

A) choosing the storage format for each attribute from the logical database model.
B) grouping attributes from the logical database model into physical records.
C) arranging related records in secondary memory so that individual and groups of records can be stored, retrieved, and updated rapidly.
D) selecting media and structures for storing data to make access more efficient.
E) conducting requirements structuring.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
80
Combining all normalized user views into one consolidated logical database model refers to:

A) normalization.
B) requirements structuring.
C) file integration.
D) view integration.
E) logic modeling.
Unlock Deck
Unlock for access to all 311 flashcards in this deck.
Unlock Deck
k this deck
locked card icon
Unlock Deck
Unlock for access to all 311 flashcards in this deck.