A table is in Third Normal Form (3NF) if it is in 2NF and has absolutely no non-prime attributes that exhibit what type of dependency? MCQ with Answer and Explanation

A table is in Third Normal Form (3NF) if it is in 2NF and has absolutely no non-prime attributes that exhibit what type of dependency?
A. Transitive Dependency
B. Partial Dependency
C. Trivial Dependency
D. Join Dependency
Answer: Option A
Solution (By JKExamLibrary)
Third Normal Form (3NF) requires a relation to be in 2NF with no transitive dependencies, meaning non-prime attributes cannot be determined by other non-prime attributes.

Discuss this Question (0)

No comments yet. Be the first to start the discussion!

Practice More Database Management System (DBMS) Questions

Question #1
Which constraint ensures that every value in a specific column is unique across all rows in that table, but still permits a NULL value?
A. PRIMARY KEY
B. CHECK
C. FOREIGN KEY
D. UNIQUE

Correct Answer: Option D


Explanation:
The UNIQUE constraint prevents duplicate entries in a column. Unlike a Primary Key, a UNIQUE constraint typically allows one or more rows to store NULL values depending on the database engine.

This question belongs to: Computer Database Management System (DBMS)
Question #2
What type of join produces a Cartesian product, matching every single row of the first table with every single row of the second table?
A. Left Join
B. Inner Join
C. Natural Join
D. Cross Join

Correct Answer: Option D


Explanation:
A Cross Join returns the Cartesian product of the two tables, multiplying the total number of rows from the first table by the number of rows in the second table.

This question belongs to: Computer Database Management System (DBMS)
Question #3
What does the SQL command 'INSERT INTO' do?
A. Creates a table
B. Adds a new row to a table
C. Deletes rows
D. Updates existing rows

Correct Answer: Option B


Explanation:
INSERT INTO is used to insert new records (rows) into a table.

This question belongs to: Computer Database Management System (DBMS)