Module 2 Flashcards
Is it true that end users find it difficult to think of a relation as a table?
True
It is perceived as a two-dimensional structure composed of rows and columns. What is this structure called?
Table
E. F. Codd used the terms ‘relation’ and ________ as synonyms.
Table
You can think of a table as a persistent representation of a logical relation— that is, a ________ whose contents can be permanently saved for future use.
Relation
A table that contains a group of related entity occurrences is called an ________.
Entity Set
In the relational model, ______ is/are important because they are used to ensure that each row in a table is uniquely identifiable.
Keys
A ________ consists of one or more attributes that determine other attributes.
Key
The relationship is called ___________, which means that the value of one or more attributes determines the value of one or more other attributes.
Functional Dependence
The attribute whose value determines another is called a ________.
Determinant
The attribute whose value is determined by the other attribute is called ________.
Dependent
A table is perceived as a two-dimensional structure composed of rows and columns. Is this statement true?
True
Can a table row (tuple) represent multiple entities at the same time?
False
Each table column represents an attribute, and each column has a distinct name. Is this statement true?
True
Each intersection of a row and column represents a multiple data value. Is this statement true?
False
All values in a column must conform to the same data format. Is this statement true?
True
Each column has a specific range of values known as the ________.
Attribute domain
The order of the rows and columns is immaterial to the DBMS. Is this statement true?
True
Which of the following statements about Entity Integrity and Referential Integrity is TRUE?
A Foreign Key (FK) must always reference an existing Primary Key value or be null.
What best describes Entity Integrity?
A Primary Key ensures each row has a unique identity and cannot be null.
What best describes the Referential Integrity Rule?
A Foreign Key must reference an existing Primary Key value or be null.
One of the set operators that is referred to as a unary operator because it only uses one table as input is ________.
Select
One of the set operators that yields all values for selected attributes is called ________.
Project
One of the set operators that combines all rows from two tables, excluding duplicate rows is called ________.
Union