Which of the following database models organizes data in a tree-like upside-down structure with parent-child relationships? MCQ with Answer and Explanation

Which of the following database models organizes data in a tree-like upside-down structure with parent-child relationships?
A. Object-Oriented Model
B. Network Model
C. Hierarchical Model
D. Relational Model
Answer: Option C
Solution (By JKExamLibrary)
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)

Discuss this Question (0)

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

Practice More Database Management System (DBMS) Questions

Question #1 Report Error
What is the purpose of the SQL GROUP BY ... HAVING combination?
A. To select individual rows
B. To filter groups based on aggregate values
C. To join groups
D. To sort groups

Correct Answer: Option B


Explanation:
HAVING is used in conjunction with GROUP BY to filter groups based on conditions applied to aggregate functions.

This question belongs to: Computer Database Management System (DBMS)
Question #2 Report Error
What does ACID stand for in the context of database transactions?
A. Atomicity, Concurrency, Isolation, Durability
B. Atomicity, Consistency, Integrity, Data
C. Atomicity, Consistency, Integrity, Durability
D. Atomicity, Consistency, Isolation, Durability

Correct Answer: Option D


Explanation:
ACID stands for Atomicity, Consistency, Isolation, and Durability, which are the key properties that guarantee reliable processing of database transactions.

This question belongs to: Computer Database Management System (DBMS)
Question #3 Report Error
What is a data dictionary in a DBMS?
A. A backup of the database
B. A repository of metadata about the database
C. A log file
D. A table containing user data

Correct Answer: Option B


Explanation:
The data dictionary stores metadata such as table definitions, column types, constraints, and other database objects.

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