EXAM TEST BANK WITH ALL VERSIONS OF
THE EXAM WITH ALLMODULES COVERED |
ACCURATE AND VERIFIED QUESTIONS AND
ANSWERS FOR GUARANTEED PASS| LATEST
UPDATE
1. In the relational model, _____ are important because they are used to ensure that
each row in a table is uniquely identifiable.
A. Tables
B. Attributes
C. Keys
D. Records
Correct Answer: C. Keys
Rationale: Keys uniquely identify each row in a relational table, ensuring data integrity.
2. In a relational table, each column has a specific range of values known as the
_____________.
A. Attribute
B. Key
C. Index
D. Domain
Correct Answer: D. Domain
Rationale: A domain defines the set of allowable values for a column (attribute).
3. The _____ relationship is the "relational model ideal."
A. M:N
B. 1:M
C. 1:1
D. Recursive
Correct Answer: B. 1:M
Rationale: One-to-many (1:M) is ideal in relational databases for efficient data
organization and access.
,4. According to Codd's _____ rule of relational databases, "Application programs and ad
hoc facilities are logically unaffected when changes are made to the table structures
that preserve the original table values."
A. Physical data independence
B. Logical data independence
C. Entity integrity
D. Data consistency
Correct Answer: B. Logical data independence
Rationale: Logical data independence allows structural changes without affecting
application logic.
5. The order of the rows and columns is important to the DBMS. (T/F)
Correct Answer: False
Rationale: In a relational model, the order of rows and columns does not affect data
interpretation.
6. A(n) ____________ links tables on the basis of an equality condition that compares
specified columns of each table.
A. Outer join
B. Equijoin
C. Subquery
D. Natural join
Correct Answer: B. Equijoin
Rationale: An equijoin links tables using equality conditions between columns.
7. When two or more tables share the same number of columns with compatible
domains, they are said to be _____.
A. Normalized
B. Union-Compatible
C. Primary-Related
D. Attribute-Matched
Correct Answer: B. Union-Compatible
Rationale: Union-compatibility allows operations like UNION in relational algebra.
8. A table is also called a(n) _____________ in the relational model.
A. Index
B. Key
C. Relation
D. Join
Correct Answer: C. Relation
Rationale: In relational theory, a table is synonymous with a relation.
, 9. The __________ catalog describes all objects within the database, including table
names, creation date, columns, data types, and access privileges.
A. Reference
B. Metadata
C. System
D. External
Correct Answer: C. System
Rationale: The system catalog stores metadata about the database.
10. The row's range of permissible values is known as its domain. (T/F)
Correct Answer: False
Rationale: Domain refers to the column (attribute), not the row.
11. The ___________ relationship is the relational database norm.
A. 1:1
B. M:N
C. 1:M
D. Recursive
Correct Answer: C. 1:M
Rationale: 1:M relationships are the most common and natural form in relational
databases.
12. To avoid nulls, some designers use special codes, known as ______, to indicate missing
values.
A. Pointers
B. Tokens
C. Flags
D. Keys
Correct Answer: C. Flags
Rationale: Flags are special values used to represent missing or inapplicable data.
13. A data dictionary is sometimes described as "the database designer's database." (T/F)
Correct Answer: True
Rationale: A data dictionary stores metadata that helps designers manage database
structure.
14. The SELECT operator yields a vertical subset of a table. (T/F)
Correct Answer: False
Rationale: SELECT yields a horizontal subset (rows); PROJECT yields a vertical subset
(columns).
15. Character data can contain any character or symbol intended for mathematical
manipulation. (T/F)