Q1
True / FalseSecond Normal Form (2NF) requires that a table must be in First Normal Form (1NF).
To achieve Second Normal Form, a table must first satisfy the requirements of First Normal Form.
Q2
True / FalseIn Second Normal Form (2NF), partial dependencies are allowed if the non-key attributes are dependent on a subset of the primary key.
2NF requires that all non-key attributes are fully functionally dependent on the entire primary key, eliminating partial dependencies.
Q3
True / FalseA table in Second Normal Form (2NF) cannot have any transitive dependencies.
2NF addresses partial dependencies, but transitive dependencies are dealt with in Third Normal Form (3NF).
Q4
True / FalseIf a table is in Second Normal Form (2NF), it is also automatically in First Normal Form (1NF).
Second Normal Form builds on First Normal Form; thus, a table in 2NF must be in 1NF as well.
Q5
True / FalseAchieving Second Normal Form (2NF) involves removing repeating groups from a table.
Removing repeating groups is part of achieving First Normal Form (1NF), not 2NF.
Q6
True / FalseIn Second Normal Form (2NF), every non-key attribute must be functionally dependent on the whole primary key.
2NF requires that non-key attributes depend on the entire primary key to eliminate partial dependencies.
Q7
True / FalseA table in Second Normal Form (2NF) can still contain columns that are dependent on only part of the primary key.
2NF requires the removal of columns that are partially dependent on a part of the primary key.
Q8
True / FalseSecond Normal Form (2NF) can be applied to tables with composite primary keys.
2NF specifically deals with tables having composite primary keys to ensure all non-key attributes depend on the whole key.
Q9
True / FalseIn Second Normal Form (2NF), each non-key attribute must be dependent on the whole primary key and not just part of it.
2NF requires non-key attributes to be fully functionally dependent on the entire primary key, eliminating partial dependencies.
Q10
True / FalsePartial dependencies can exist in a table that is in Second Normal Form (2NF).
2NF ensures that partial dependencies are removed, so they should not exist in a table in 2NF.
Q11
True / FalseSecond Normal Form (2NF) is a step towards achieving Fourth Normal Form (4NF).
2NF is a step towards Third Normal Form (3NF), and 4NF deals with multi-valued dependencies.
Q12
True / FalseTables in Second Normal Form (2NF) must have a single-column primary key.
2NF applies to tables with composite primary keys as well, focusing on eliminating partial dependencies.
Q13
True / FalseTo achieve Second Normal Form (2NF), a table must first be converted to Third Normal Form (3NF).
2NF is a prerequisite for achieving 3NF, not the other way around. A table must be in 1NF to move to 2NF.
Q14
True / FalseA table in Second Normal Form (2NF) eliminates all redundancy in the database.
While 2NF reduces redundancy by addressing partial dependencies, complete elimination of redundancy may require higher normal forms.
Q15
True / FalseSecond Normal Form (2NF) deals with ensuring that every non-key attribute is functionally dependent on the primary key.
2NF ensures that non-key attributes are fully functionally dependent on the entire primary key, addressing partial dependencies.