Fifth normal form is concerned with:
20242023
Fifth normal form is concerned with:
- A.
Join Dependency
- B.
Domain-Key
- C.
Multivalued dependency
- D.
Functional dependency
Attempted by 336 students.
Show answer & explanation
Correct answer: A
Answer: Fifth normal form (5NF) is concerned with join dependencies.
Key points:
5NF (projection-join normal form) eliminates redundancy that arises only when joining tables; it requires that every nontrivial join dependency in the relation is implied by the candidate keys.
A join dependency means the original relation can be losslessly reconstructed by joining two or more projections; 5NF ensures such decompositions are valid and necessary.
Contrast with other normal forms: multivalued dependencies are handled by Fourth Normal Form (4NF); functional dependencies are addressed by 2NF, 3NF, and BCNF; Domain-Key Normal Form (DKNF) concerns domain and key constraints.
Example: If a relation R(A, B, C) can be decomposed into R1(A, B) and R2(A, C) and this decomposition is required because B and C are independent given A, then 5NF describes when such a decomposition is appropriate and lossless due to a join dependency.
A video solution is available for this question — log in and enroll to watch it.