Database systems
⏱ ~3-min readAceMark GuideWhat this topic is really about
ACID represents the fundamental properties—Atomicity, Consistency, Isolation, and Durability—that guarantee database transactions are processed reliably. Option C is incorrect because 'Concurrency' is a mechanism managed by isolation, not a core ACID property itself, and the 'D' stands for Durability rather than Data.
Second Normal Form (2NF) requires a relation to be in 1NF and ensures that all non-prime attributes are fully functionally dependent on the primary key, thereby eliminating partial dependencies. Third Normal Form (3NF) goes further by removing transitive dependencies, which are already absent of partial dependencies.
See the mechanism
Second Normal Form (2NF) requires a relation to be in 1NF and ensures that all non-prime attributes are fully functionally dependent on the primary key, thereby eliminating partial dependencies. A diagram for this topic isn't available yet — the worked example below walks the same reasoning step by step.
An exam-style question, fully explained
Which normal form removes partial functional dependencies?
- Identify what the question tests: Which normal form removes partial functional dependencies.
- Second Normal Form (2NF) requires a relation to be in 1NF and ensures that all non-prime attributes are fully functionally dependent on the primary key, thereby eliminating partial dependencies.
- Third Normal Form (3NF) goes further by removing transitive dependencies, which are already absent of partial dependencies.
Traps the examiner sets
- The WHERE clause filters rows before grouping, so using it to filter groups is a common mistake that leads to wrong results.
- Option C is incorrect because 'Concurrency' is a mechanism managed by isolation, not a core ACID property itself, and the 'D' stands for Durability rather than Data.
Test your recall
Answer each from memory — you'll see instantly whether you're right and why.
Run a focused 10-question mini-mock on Database systems and see it stick.
Practice more of this topic →