IT 214 - Quiz 2

25 July 2022
4.7 (114 reviews)
69 test answers

Unlock all answers in this set

Unlock answers (65)
question
A(n) ____ is perceived as a two-dimensional structure composed of rows and columns.
answer
table
question
____ combines all rows from two tables, excluding duplicate rows.
answer
union
question
Fortunately, the problems inherent in the ____________________ relationship can easily be avoided by creating a composite entity.
answer
many-to-many (M:N)
question
The relational model's creator, E. F. Codd, used the term relation as a synonym for ____.
answer
Table
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.
answer
dependent
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.
answer
determines
question
When you define a table's primary key, the DBMS automatically creates a(n) ____ index on the primary key column(s) you declared.
answer
unique
question
____, also known as RESTRICT, yields values for all rows found in a table that satisfy a given condition.
answer
select
question
In the following table description, ____ is the primary key. PRODUCT (PROD_CODE, PROD_DESCRIPT, PROD_PRICE, PROD_ON_HAND, VEND_CODE)
answer
PROD_CODE
question
A proper understanding of the concept and use of keys in a relational database model is very important.
answer
true
question
Numeric data are data on which you can perform meaningful arithmetic procedures.
answer
true
question
Each table in a relational database must have a primary key.
answer
true
question
Referential ____ means that if the foreign key contains a value, that value refers to an existing valid tuple (row) in another relation.
answer
integrity
question
____ logic, used extensively in mathematics, provides a framework in which an assertion (statement of fact) can be verified as either true or false.
answer
predicate
question
____ data can have only a true or false (yes or no) values.
answer
logical
question
A(n) ____________________ key can be described as a superkey without unnecessary attributes.
answer
candidate
question
You can think of a table as a persistent representation of a logical relation.
answer
true
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.
answer
false
question
____ yields a vertical subset of a table.
answer
Project
question
PRODUCT yields all possible pairs of rows from two tables—also known as the ____________________ product.
answer
Cartesian
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
answer
Referential
question
The attribute B is ____ the attribute A if each value in column A determines one and only one value in column B.
answer
functionally dependent on
question
Proper data ____________________ design requires carefully defined and controlled data redundancies to function properly.
answer
warehousing
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.
answer
entity
question
There is never a good reason to use null values in a database.
answer
false
question
____________________ joins are especially useful when you are trying to determine what value(s) in related tables cause(s) referential integrity problems.
answer
outer
question
A(n) ____________________ is an orderly arrangement used to logically access rows in a table.
answer
index
question
In an outer join, the matched pairs would be retained and any unmatched values in the other table would be left ____.
answer
null
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
answer
true
question
A(n) ____________________ provides a detailed description of all tables found within the user/designer-created database.
answer
data dictionary
question
A(n) ____ is an ordered arrangement of keys and pointers.
answer
index
question
In a natural join, the column on which the join was made occurs twice in the new table.
answer
false
question
A ____ key is defined as a key that is used strictly for data retrieval purposes.
answer
secondary
question
If one department chair—a professor—can chair only one department and one department can have only one department chair, then the entities PROFESSOR and DEPARTMENT exhibit a(n) ____________________ relationship.
answer
1:1
question
The order of the rows and columns is important to the DBMS.
answer
false
question
No data entry at all is known as a(n) ____.
answer
null
question
In the relational model, ____________________ are important because they are used to ensure that each row in a table is uniquely identifiable.
answer
keys
question
Character data can contain any character or symbol intended for mathematical manipulation.
answer
false
question
The SELECT operator yields a vertical subset of a table.
answer
false
question
The relational database model enables you to view data ____ rather than ____.
answer
logically, physically
question
The equijoin takes its name from the comparison operator ____ used in the condition.
answer
=
question
A ____ key can be described as a superkey without unnecessary attributes, that is, a minimal superkey.
answer
candidate
question
Depending on the sophistication of the application development software, nulls can create problems when functions such as COUNT, AVERAGE, and SUM are used.
answer
true
question
To be considered minimally relational, the DBMS must support the key relational operators ____, PROJECT, and JOIN.
answer
SELECT
question
A(n) ____________________ index is an index in which the index key can have only one pointer value (row) associated with it.
answer
unique
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.
answer
relational schema
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.
answer
true
question
____ yields only the rows that appear in both tables.
answer
intersect
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.
answer
false
question
In a database context, a(n) ____ indicates the use of different names to describe the same attribute.
answer
synonym
question
As rare as 1:1 relationships should be, certain conditions absolutely require their use.
answer
true
question
Current relational database software generally provides only a system catalog (and not a data dictionary).
answer
true
question
____________________ is the real power behind the relational database, allowing the use of independent tables linked by common attributes.
answer
Join
question
In a database context, the word ____ indicates the use of the same attribute name to label different attributes.
answer
homonym
question
A foreign key must exist in both tables that have a relationship.
answer
false
question
Controlled ____ makes a relational database work.
answer
redundency
question
All primary key entries are unique, and no part of a primary key may be ____.
answer
null
question
The ____________________ relationship is the relational database norm.
answer
1:M
question
The ____ constraint can be placed on a column to ensure that every row in the table has a value for that column.
answer
NOT NULL
question
A ____ contains at least all of the attribute names and characteristics for each table in the system.
answer
data dictionary
question
The ____ is actually a system-created database whose tables store the user/designer-created database characteristics and contents.
answer
system catalog
question
The DIFFERENCE operator subtracts one table from the other.
answer
true
question
Referential and entity integrity are two names for the same thing.
answer
false
question
A(n) ____ join links tables by selecting only the rows with common values in their common attribute(s).
answer
natural
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).
answer
true
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) ____________________.
answer
relation
question
The proper use of ____________________ keys is crucial to controlling data redundancy.
answer
foreign
question
Tables must have the same attribute characteristics (the columns and domains must be compatible) to be used in a UNION.
answer
true
question
A ____ is any key that uniquely identifies each row.
answer
superkey