What type of entity cannot be uniquely identified by its own attributes alone and must rely on a relationship with a parent entity? MCQ with Answer and Explanation

What type of entity cannot be uniquely identified by its own attributes alone and must rely on a relationship with a parent entity?
A. Associative Entity
B. Weak Entity
C. Abstract Entity
D. Strong Entity
Answer: Option B
Solution (By JKSSB Mock Tests)
A Weak Entity is an entity that does not possess its own primary key and depends on an identifying relationship with a strong (owner) entity.

Discuss this Question (0)

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

Practice More Database Management System (DBMS) Questions

Question #1
What is a super key in a relational database?
A. A key that includes the primary key
B. A set of attributes that uniquely identifies a row
C. Both A and B
D. A key that has extra attributes beyond a candidate key

Correct Answer: Option C


Explanation:
A super key is a set of one or more attributes that uniquely identifies a row. A candidate key is a minimal super key.

This question belongs to: Computer Database Management System (DBMS)
Question #2
Which of the following database models organizes data in a tree-like upside-down structure with parent-child relationships?
A. Network Model
B. Hierarchical Model
C. Relational Model
D. Object-Oriented Model

Correct Answer: Option B


Explanation:
The Hierarchical Model stores data in a tree-like configuration where each child node has exactly one parent node.

This question belongs to: Computer Database Management System (DBMS)
Question #3
Which of the following is a valid SQL data type for storing large binary data?
A. VARCHAR
B. BLOB
C. CHAR
D. TEXT

Correct Answer: Option B


Explanation:
BLOB (Binary Large Object) is used for storing large binary data, such as images or files.

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