Q1
True / FalseA table is in Third Normal Form (3NF) if it has no transitive dependencies.
A table is in 3NF if it is in 2NF and has no transitive dependencies, meaning all non-key attributes must depend only on the primary key.
Q2
True / FalseThird Normal Form (3NF) requires that there are no partial dependencies in a table.
Partial dependencies are eliminated in Second Normal Form (2NF). 3NF focuses on eliminating transitive dependencies.
Q3
True / FalseA table in Third Normal Form (3NF) should not have any non-key attributes depending on other non-key attributes.
In 3NF, all non-key attributes must be directly dependent on the primary key, not on other non-key attributes.
Q4
True / FalseTo achieve Third Normal Form (3NF), a table must also be in Second Normal Form (2NF).
3NF builds upon 2NF. Therefore, a table must first be in 2NF before it can be converted to 3NF.
Q5
True / FalseA table in Third Normal Form (3NF) ensures that there are no partial dependencies.
While 3NF eliminates transitive dependencies, partial dependencies are addressed in 2NF.
Q6
True / FalseIn Third Normal Form (3NF), a table can have transitive dependencies if it is also in Second Normal Form (2NF).
3NF specifically eliminates transitive dependencies. A table with transitive dependencies cannot be considered in 3NF.
Q7
True / FalseThird Normal Form (3NF) requires that a table should not have derived attributes.
Derived attributes are not directly related to 3NF. 3NF focuses on eliminating transitive dependencies among non-key attributes.
Q8
True / FalseA table in Third Normal Form (3NF) does not need to be free of redundant data.
While 3NF eliminates transitive dependencies, some redundancy might still exist if higher normal forms are not applied.
Q9
True / FalseIn Third Normal Form (3NF), all non-key attributes must be dependent on the primary key alone.
3NF requires that all non-key attributes depend solely on the primary key, and not on other non-key attributes.
Q10
True / FalseAchieving Third Normal Form (3NF) automatically resolves all data redundancy issues.
3NF addresses transitive dependencies but does not completely resolve all data redundancy issues. Higher normal forms may be needed.
Q11
True / FalseTo be in Third Normal Form (3NF), a table must not contain any repeating groups.
Repeating groups are eliminated in First Normal Form (1NF). 3NF specifically focuses on transitive dependencies.
Q12
True / FalseA table in Third Normal Form (3NF) should not have partial dependencies on composite keys.
Partial dependencies are handled in Second Normal Form (2NF). 3NF eliminates transitive dependencies rather than addressing partial dependencies.
Q13
True / FalseIn Third Normal Form (3NF), all attributes should be dependent on a primary key and not on other non-key attributes.
3NF requires that non-key attributes depend only on the primary key and not on other non-key attributes.
Q14
True / FalseA table that is in Third Normal Form (3NF) must have a composite primary key.
3NF does not require a table to have a composite primary key. The focus is on eliminating transitive dependencies, regardless of the type of primary key.
Q15
True / FalseTo achieve Third Normal Form (3NF), you must also ensure that the table is in Boyce-Codd Normal Form (BCNF).
While BCNF is a stricter version of 3NF, achieving 3NF does not require a table to be in BCNF. BCNF addresses additional anomalies not covered by 3NF.