In normalization, 1NF requires that: MCQ with Answer and Explanation

In normalization, 1NF requires that:
A. The table has a primary key
B. There are no partial dependencies
C. All attributes have atomic values
D. There are no transitive dependencies
Answer: Option C
Solution (By JKSSB Mock Tests)
First Normal Form (1NF) ensures that each attribute contains only atomic (indivisible) values.

Discuss this Question (0)

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

Practice More Database Management System (DBMS) Questions

Question #1
Which data model uses objects, classes, and inheritance features, mirroring concepts from object-oriented programming?
A. Flat Data Model
B. Object-Oriented Data Model
C. Network Data Model
D. Relational Data Model

Correct Answer: Option B


Explanation:
The Object-Oriented Data Model integrates object-oriented programming languages directly with databases, storing data as objects with attributes and methods.

This question belongs to: Computer Database Management System (DBMS)
Question #2
What is the difference between a clustered and a non-clustered index?
A. Non-clustered determines physical order; clustered is logical
B. There is no difference
C. Clustered index determines physical order; non-clustered is a logical order
D. They both determine physical order

Correct Answer: Option C


Explanation:
A clustered index sorts the data rows and stores them in that order; a non-clustered index is a separate structure with pointers to data rows.

This question belongs to: Computer Database Management System (DBMS)
Question #3
What is a column in a relational database table formally called?
A. Degree
B. Tuple
C. Entity
D. Attribute

Correct Answer: Option D


Explanation:
A column in a database table represents a property or characteristic of the entity and is formally known as an attribute.

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