Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

The correct option is 2) Third Normal Form (3NF) eliminates all redundant data in a table.

Second Normal Form (2NF) requires a composite primary key:


 This statement is false. Second Normal Form (2NF) does not necessarily require a
composite primary key. It focuses on removing partial dependencies in a table, which
occur when a non-key attribute depends on only a portion of the primary key.
 However, it does not mandate the use of a composite primary key.

 Additional Information
1) First Normal Form (1NF) allows repeating groups in a table:
 This statement is false. First Normal Form (1NF) is a fundamental principle of database
normalization that requires each column in a table to hold only atomic (indivisible)
values.
 It does not allow repeating groups of values within a single row or column. Instead, each
value should be stored in a separate field.
2) Third Normal Form (3NF) eliminates all redundant data in a table:
 This statement is true. Third Normal Form (3NF) is a higher level of database
normalization that builds upon the principles of First Normal Form (1NF) and Second
Normal Form (2NF).
 It ensures that a table is free from transitive dependencies and eliminates any redundant
data. In 3NF, all non-key attributes are dependent solely on the table's primary key and
not on other non-key attributes.
3) Fourth Normal Form (4NF) is not applicable in Microsoft Access:
 This statement is false. Fourth Normal Form (4NF) is an advanced level of normalization
that deals with multi-valued dependencies within a table.
 While 4NF is not as commonly implemented as 1NF, 2NF, and 3NF, it is still applicable in
Microsoft Access and can be used to further refine and optimize the structure of a
database.
In summary, the correct option is 2) Third Normal Form (3NF)

You might also like