Deck 3: The Relational Database Model

Full screen (f)
exit full mode
Question
A null is created when you press the Enter key or the Tab key to move to the next entry without making a prior entry of any kind.
Use Space or
up arrow
down arrow
to flip the card.
Question
Tables must have the same attribute characteristics (the columns and domains must be compatible)to be used in a UNION.
Question
If the attribute (B)is functionally dependent on a composite key (A)but not on any subset of that composite key,the attribute (B)is fully functionally dependent on (A).
Question
All RDBMSs enforce integrity rules automatically.
Question
Referential and entity integrity are two names for the same thing.
Question
Only a single attribute,not multiple attributes,can define functional dependence.
Question
Character data can contain any character or symbol intended for mathematical manipulation.
Question
The order of the rows and columns is important to the DBMS.
Question
In a relational model,if A determines B,C,and D,you write A = B,C,D.
Question
A proper understanding of the concept and use of keys in a relational database model is very important.
Question
Because the relational model uses attribute values to establish relationships among tables,many database users correctly assume that the term relation refers to such relationships.
Question
There is never a good reason to use null values in a database.
Question
Numeric data are data on which you can perform meaningful arithmetic procedures.
Question
The SELECT operator yields a vertical subset of a table.
Question
The practical significance of taking the logical view of a database is that it serves as a reminder of the simple file concept of data storage.
Question
Depending on the sophistication of the application development software,nulls can create problems when functions such as COUNT,AVERAGE,and SUM are used.
Question
Each table in a relational database must have a primary key.
Question
Tables within a database share common attributes that enable the tables to be linked together.
Question
A foreign key must exist in both tables that have a relationship.
Question
You can think of a table as a persistent representation of a logical relation.
Question
Current relational database software generally provides only a system catalog (and not a data dictionary).
Question
____ data can have only a true or false (yes or no)values.

A) Logical
B) Character
C) Date
D) Numeric
Question
Date attributes contain calendar dates stored in a special format known as the ____ date format.

A) Epoch
B) Calendar
C) Julian
D) logical
Question
DBMSs use indexes for many different purposes.
Question
In the relational model,____ are important because they are used to ensure that each row in a table is uniquely identifiable

A) relations
B) keys
C) indexes
D) logical structures
Question
The relational model's creator,E.F.Codd,used the term relation as a synonym for ____.

A) index
B) key
C) table
D) relationship
Question
Any attribute that is part of a key is known as a ____.

A) key attribute
B) logical attribute
C) key determiner
D) selector
Question
The attribute B is ____ the attribute A if each value in column A determines one and only one value in column B.

A) logically dependent on
B) owned by
C) determined by
D) functionally dependent on
Question
The one-to-many (1:M)relationship is easily implemented in the relational model by putting the foreign key of the "1" side in the table of the "many" side as a primary key.
Question
In a natural join,the column on which the join was made occurs twice in the new table.
Question
As rare as 1:1 relationships should be,certain conditions absolutely require their use.
Question
A data dictionary contains metadata-data about data.
Question
The relational database model enables you to view data ____ rather than ____.

A) relationally,hierarchically
B) hierarchically,relationally
C) physically,logically
D) logically,physically
Question
____ logic,used extensively in mathematics,provides a framework in which an assertion (statement of fact)can be verified as either true or false.

A) Predicate
B) Database
C) Relational
D) Index
Question
The DIFFERENCE operator subtracts one table from the other.
Question
A data dictionary is sometimes described as "the database designer's database" because it records the design decisions about tables and their structures.
Question
A left outer join on tables CUSTOMER and AGENT yields all of the rows in the CUSTOMER table,including those that do not have a matching value in the AGENT table
Question
In the context of a database table,the statement "A ____ B" indicates that if you know the value of attribute A,you can look up the value of attribute B.

A) contains
B) is related to
C) owns
D) determines
Question
A(n)____ is perceived as a two-dimensional structure composed of rows and columns.

A) table
B) rowset
C) attribute
D) intersection
Question
The DIVIDE operation uses one single-column table (i.e.column "a")as the divisor and one two-column table (i.e.columns "a" and "b")as the dividend.
Question
A CUSTOMER table's primary key is CUS_CODE.The CUSTOMER primary key column has no null entries,and all entries are unique.This is an example of ____ integrity.

A) entity
B) referential
C) complete
D) null
Question
No data entry at all is known as a(n)____.

A) nil
B) null
C) empty
D) zero
Question
____ combines all rows from two tables,excluding duplicate rows.

A) INTERSECT
B) UNION
C) DIFFERENCE
D) SELECT
Question
Controlled ____ makes a relational database work.

A) relations
B) logic
C) chaos
D) redundancy
Question
In the following table description,____ is the primary key.
PRODUCT (PROD_CODE,PROD_DESCRIPT,PROD_PRICE,PROD_ON_HAND,VEND_CODE)

A) PROD_DESCRIPT
B) PROD_CODE
C) PROD_PRICE
D) PROD_ON_HAND
Question
To be considered minimally relational,the DBMS must support the key relational operators ____,PROJECT,and JOIN.

A) INTERSECT
B) UNION
C) DIFFERENCE
D) SELECT
Question
In an outer join,the matched pairs would be retained and any unmatched values in the other table would be left ____.

A) in another table
B) null
C) out of the results
D) with matching values from the original table
Question
A ____ key can be described as a superkey without unnecessary attributes,that is,a minimal superkey.

A) secondary
B) candidate
C) primary
D) foreign
Question
If the attribute (B)is functionally dependent on a composite key (A)but not on any subset of that ____ key,the attribute (B)is fully functionally dependent on (A).

A) foreign
B) unique
C) composite
D) complete
Question
A(n)____ join links tables by selecting only the rows with common values in their common attribute(s).

A) equal
B) unique
C) foreign
D) natural
Question
Referential ____ means that if the foreign key contains a value,that value refers to an existing valid tuple (row)in another relation.

A) integrity
B) uniqueness
C) direction
D) relations
Question
____ yields only the rows that appear in both tables.

A) INTERSECT
B) UNION
C) DIFFERENCE
D) SELECT
Question
A ____ is a textual representation of the database tables where each table is listed by its name followed by the list of its attributes in parentheses.

A) relational dictionary
B) logical schema
C) relational schema
D) data dictionary
Question
The ____ constraint can be placed on a column to ensure that every row in the table has a value for that column.

A) HAS VALUE
B) NOT NULL
C) MUST HAVE VALUE
D) NOT EMPTY
Question
A ____ is any key that uniquely identifies each row.

A) superkey
B) special
C) selective
D) candidate
Question
The equijoin takes its name from the comparison operator ____ used in the condition.

A) *
B) <
C) =
D) >
Question
____ yields a vertical subset of a table.

A) PROJECT
B) SELECT
C) UNION
D) DIFFERENCE
Question
____,also known as RESTRICT,yields values for all rows found in a table that satisfy a given condition.

A) INTERSECT
B) UNION
C) DIFFERENCE
D) SELECT
Question
All primary key entries are unique,and no part of a primary key may be ____.

A) zero
B) a foreign key
C) null
D) a candidate key
Question
A ____ key is defined as a key that is used strictly for data retrieval purposes.

A) lookup
B) foreign
C) candidate
D) secondary
Question
Codd's rule of ____ states:
Application programs and ad hoc facilities are logically unaffected when changes are made to the table structures that preserve the original table values (changing order of columns or inserting columns).

A) Nonsubversion
B) Logical Data Independence
C) Comprehensive Data Sublanguage
D) Integrity Independence
Question
When you define a table's primary key,the DBMS automatically creates a(n)____ index on the primary key column(s)you declared.

A) key
B) incomplete
C) unique
D) primary
Question
If the foreign key contains either matching values or nulls,the table that makes use of that foreign key is said to exhibit ____________________ integrity
Question
A(n)____________________ key can be described as a superkey without unnecessary attributes.
Question
The ____ is actually a system-created database whose tables store the user/designer-created database characteristics and contents.

A) meta dictionary
B) schema
C) data dictionary
D) system catalog
Question
The relational operators have the property of ____________________; that is,the use of relational algebra operators on existing relations (tables)produces new relations.
Question
In the relational model,____________________ are important because they are used to ensure that each row in a table is uniquely identifiable.
Question
In a database context,the word ____ indicates the use of the same attribute name to label different attributes.

A) redundancy
B) homonym
C) duplicate
D) synonym
Question
The logical view of the relational database is facilitated by the creation of data relationships based on a logical construct known as a(n)____________________.
Question
A ____ contains at least all of the attribute names and characteristics for each table in the system.

A) data dictionary
B) relational schema
C) logical schema
D) join
Question
A(n)____ is an ordered arrangement of keys and pointers.

A) table
B) superkey
C) relationship
D) index
Question
____ relational type is the "relational model ideal."

A) 1:1
B) 1:M
C) M:1
D) M:N
Question
In a database context,a(n)____ indicates the use of different names to describe the same attribute.

A) entity
B) duplicate
C) synonym
D) homonym
Question
Attribute A determines attribute B (that is,B is functionally ____________________ on A)if all of the rows in the table that agree in value for attribute A also agree in value for attribute B.
Question
Since it is used to link the tables that originally were related in a M:N relationship,the composite entity structure includes-as foreign keys-at least the ____ keys of the tables that are to be linked.

A) composite
B) super
C) primary
D) unique
Question
In a relational table,each column has a specific range of values known as the ____________________ domain.
Question
PRODUCT yields all possible pairs of rows from two tables-also known as the ____________________ product.
Question
To avoid nulls,some designers use special codes,known as ____________________,to indicate the absence of some value.
Question
The following example exhibits ____________________ integrity:
The CUSTOMER table's primary key is CUS_CODE.The CUSTOMER primary key column has no null entries,and all entries are unique.Similarly,the AGENT table's primary key is AGENT_CODE,and this primary key column also is free of null entries.
Question
The ____ relationship should be rare in any relational database design.

A) 1:1
B) 1:M
C) M:1
D) M:N
Unlock Deck
Sign up to unlock the cards in this deck!
Unlock Deck
Unlock Deck
1/100
auto play flashcards
Play
simple tutorial
Full screen (f)
exit full mode
Deck 3: The Relational Database Model
1
A null is created when you press the Enter key or the Tab key to move to the next entry without making a prior entry of any kind.
True
2
Tables must have the same attribute characteristics (the columns and domains must be compatible)to be used in a UNION.
True
3
If the attribute (B)is functionally dependent on a composite key (A)but not on any subset of that composite key,the attribute (B)is fully functionally dependent on (A).
True
4
All RDBMSs enforce integrity rules automatically.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
5
Referential and entity integrity are two names for the same thing.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
6
Only a single attribute,not multiple attributes,can define functional dependence.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
7
Character data can contain any character or symbol intended for mathematical manipulation.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
8
The order of the rows and columns is important to the DBMS.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
9
In a relational model,if A determines B,C,and D,you write A = B,C,D.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
10
A proper understanding of the concept and use of keys in a relational database model is very important.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
11
Because the relational model uses attribute values to establish relationships among tables,many database users correctly assume that the term relation refers to such relationships.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
12
There is never a good reason to use null values in a database.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
13
Numeric data are data on which you can perform meaningful arithmetic procedures.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
14
The SELECT operator yields a vertical subset of a table.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
15
The practical significance of taking the logical view of a database is that it serves as a reminder of the simple file concept of data storage.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
16
Depending on the sophistication of the application development software,nulls can create problems when functions such as COUNT,AVERAGE,and SUM are used.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
17
Each table in a relational database must have a primary key.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
18
Tables within a database share common attributes that enable the tables to be linked together.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
19
A foreign key must exist in both tables that have a relationship.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
20
You can think of a table as a persistent representation of a logical relation.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
21
Current relational database software generally provides only a system catalog (and not a data dictionary).
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
22
____ data can have only a true or false (yes or no)values.

A) Logical
B) Character
C) Date
D) Numeric
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
23
Date attributes contain calendar dates stored in a special format known as the ____ date format.

A) Epoch
B) Calendar
C) Julian
D) logical
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
24
DBMSs use indexes for many different purposes.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
25
In the relational model,____ are important because they are used to ensure that each row in a table is uniquely identifiable

A) relations
B) keys
C) indexes
D) logical structures
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
26
The relational model's creator,E.F.Codd,used the term relation as a synonym for ____.

A) index
B) key
C) table
D) relationship
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
27
Any attribute that is part of a key is known as a ____.

A) key attribute
B) logical attribute
C) key determiner
D) selector
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
28
The attribute B is ____ the attribute A if each value in column A determines one and only one value in column B.

A) logically dependent on
B) owned by
C) determined by
D) functionally dependent on
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
29
The one-to-many (1:M)relationship is easily implemented in the relational model by putting the foreign key of the "1" side in the table of the "many" side as a primary key.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
30
In a natural join,the column on which the join was made occurs twice in the new table.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
31
As rare as 1:1 relationships should be,certain conditions absolutely require their use.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
32
A data dictionary contains metadata-data about data.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
33
The relational database model enables you to view data ____ rather than ____.

A) relationally,hierarchically
B) hierarchically,relationally
C) physically,logically
D) logically,physically
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
34
____ logic,used extensively in mathematics,provides a framework in which an assertion (statement of fact)can be verified as either true or false.

A) Predicate
B) Database
C) Relational
D) Index
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
35
The DIFFERENCE operator subtracts one table from the other.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
36
A data dictionary is sometimes described as "the database designer's database" because it records the design decisions about tables and their structures.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
37
A left outer join on tables CUSTOMER and AGENT yields all of the rows in the CUSTOMER table,including those that do not have a matching value in the AGENT table
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
38
In the context of a database table,the statement "A ____ B" indicates that if you know the value of attribute A,you can look up the value of attribute B.

A) contains
B) is related to
C) owns
D) determines
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
39
A(n)____ is perceived as a two-dimensional structure composed of rows and columns.

A) table
B) rowset
C) attribute
D) intersection
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
40
The DIVIDE operation uses one single-column table (i.e.column "a")as the divisor and one two-column table (i.e.columns "a" and "b")as the dividend.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
41
A CUSTOMER table's primary key is CUS_CODE.The CUSTOMER primary key column has no null entries,and all entries are unique.This is an example of ____ integrity.

A) entity
B) referential
C) complete
D) null
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
42
No data entry at all is known as a(n)____.

A) nil
B) null
C) empty
D) zero
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
43
____ combines all rows from two tables,excluding duplicate rows.

A) INTERSECT
B) UNION
C) DIFFERENCE
D) SELECT
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
44
Controlled ____ makes a relational database work.

A) relations
B) logic
C) chaos
D) redundancy
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
45
In the following table description,____ is the primary key.
PRODUCT (PROD_CODE,PROD_DESCRIPT,PROD_PRICE,PROD_ON_HAND,VEND_CODE)

A) PROD_DESCRIPT
B) PROD_CODE
C) PROD_PRICE
D) PROD_ON_HAND
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
46
To be considered minimally relational,the DBMS must support the key relational operators ____,PROJECT,and JOIN.

A) INTERSECT
B) UNION
C) DIFFERENCE
D) SELECT
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
47
In an outer join,the matched pairs would be retained and any unmatched values in the other table would be left ____.

A) in another table
B) null
C) out of the results
D) with matching values from the original table
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
48
A ____ key can be described as a superkey without unnecessary attributes,that is,a minimal superkey.

A) secondary
B) candidate
C) primary
D) foreign
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
49
If the attribute (B)is functionally dependent on a composite key (A)but not on any subset of that ____ key,the attribute (B)is fully functionally dependent on (A).

A) foreign
B) unique
C) composite
D) complete
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
50
A(n)____ join links tables by selecting only the rows with common values in their common attribute(s).

A) equal
B) unique
C) foreign
D) natural
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
51
Referential ____ means that if the foreign key contains a value,that value refers to an existing valid tuple (row)in another relation.

A) integrity
B) uniqueness
C) direction
D) relations
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
52
____ yields only the rows that appear in both tables.

A) INTERSECT
B) UNION
C) DIFFERENCE
D) SELECT
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
53
A ____ is a textual representation of the database tables where each table is listed by its name followed by the list of its attributes in parentheses.

A) relational dictionary
B) logical schema
C) relational schema
D) data dictionary
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
54
The ____ constraint can be placed on a column to ensure that every row in the table has a value for that column.

A) HAS VALUE
B) NOT NULL
C) MUST HAVE VALUE
D) NOT EMPTY
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
55
A ____ is any key that uniquely identifies each row.

A) superkey
B) special
C) selective
D) candidate
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
56
The equijoin takes its name from the comparison operator ____ used in the condition.

A) *
B) <
C) =
D) >
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
57
____ yields a vertical subset of a table.

A) PROJECT
B) SELECT
C) UNION
D) DIFFERENCE
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
58
____,also known as RESTRICT,yields values for all rows found in a table that satisfy a given condition.

A) INTERSECT
B) UNION
C) DIFFERENCE
D) SELECT
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
59
All primary key entries are unique,and no part of a primary key may be ____.

A) zero
B) a foreign key
C) null
D) a candidate key
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
60
A ____ key is defined as a key that is used strictly for data retrieval purposes.

A) lookup
B) foreign
C) candidate
D) secondary
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
61
Codd's rule of ____ states:
Application programs and ad hoc facilities are logically unaffected when changes are made to the table structures that preserve the original table values (changing order of columns or inserting columns).

A) Nonsubversion
B) Logical Data Independence
C) Comprehensive Data Sublanguage
D) Integrity Independence
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
62
When you define a table's primary key,the DBMS automatically creates a(n)____ index on the primary key column(s)you declared.

A) key
B) incomplete
C) unique
D) primary
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
63
If the foreign key contains either matching values or nulls,the table that makes use of that foreign key is said to exhibit ____________________ integrity
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
64
A(n)____________________ key can be described as a superkey without unnecessary attributes.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
65
The ____ is actually a system-created database whose tables store the user/designer-created database characteristics and contents.

A) meta dictionary
B) schema
C) data dictionary
D) system catalog
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
66
The relational operators have the property of ____________________; that is,the use of relational algebra operators on existing relations (tables)produces new relations.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
67
In the relational model,____________________ are important because they are used to ensure that each row in a table is uniquely identifiable.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
68
In a database context,the word ____ indicates the use of the same attribute name to label different attributes.

A) redundancy
B) homonym
C) duplicate
D) synonym
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
69
The logical view of the relational database is facilitated by the creation of data relationships based on a logical construct known as a(n)____________________.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
70
A ____ contains at least all of the attribute names and characteristics for each table in the system.

A) data dictionary
B) relational schema
C) logical schema
D) join
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
71
A(n)____ is an ordered arrangement of keys and pointers.

A) table
B) superkey
C) relationship
D) index
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
72
____ relational type is the "relational model ideal."

A) 1:1
B) 1:M
C) M:1
D) M:N
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
73
In a database context,a(n)____ indicates the use of different names to describe the same attribute.

A) entity
B) duplicate
C) synonym
D) homonym
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
74
Attribute A determines attribute B (that is,B is functionally ____________________ on A)if all of the rows in the table that agree in value for attribute A also agree in value for attribute B.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
75
Since it is used to link the tables that originally were related in a M:N relationship,the composite entity structure includes-as foreign keys-at least the ____ keys of the tables that are to be linked.

A) composite
B) super
C) primary
D) unique
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
76
In a relational table,each column has a specific range of values known as the ____________________ domain.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
77
PRODUCT yields all possible pairs of rows from two tables-also known as the ____________________ product.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
78
To avoid nulls,some designers use special codes,known as ____________________,to indicate the absence of some value.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
79
The following example exhibits ____________________ integrity:
The CUSTOMER table's primary key is CUS_CODE.The CUSTOMER primary key column has no null entries,and all entries are unique.Similarly,the AGENT table's primary key is AGENT_CODE,and this primary key column also is free of null entries.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
80
The ____ relationship should be rare in any relational database design.

A) 1:1
B) 1:M
C) M:1
D) M:N
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
locked card icon
Unlock Deck
Unlock for access to all 100 flashcards in this deck.