Which type of database model organizes data in a tree-like structure? MCQ with Answer and Explanation

Which type of database model organizes data in a tree-like structure?
A. Hierarchical model
B. Network model
C. Relational model
D. Object-oriented model
Answer: Option A
Solution (By JKExamLibrary)
The hierarchical model arranges data in a parent-child relationship, forming a tree structure.

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 difference between DELETE and TRUNCATE commands?
A. No difference
B. DELETE can be rolled back; TRUNCATE cannot (in most DBMS)
C. DELETE removes all rows; TRUNCATE removes structure
D. TRUNCATE can have WHERE; DELETE cannot

Correct Answer: Option B


Explanation:
DELETE is a DML command that can be rolled back and can use WHERE; TRUNCATE is a DDL command that removes all rows and cannot be rolled back (in some DBMS) and resets auto-increment counters.

This question belongs to: Computer Database Management System (DBMS)
Question #2 Report Error
Which normal form eliminates transitive dependencies?
A. 2NF
B. 3NF
C. 1NF
D. BCNF

Correct Answer: Option B


Explanation:
Third Normal Form (3NF) removes transitive dependencies on non-prime attributes.

This question belongs to: Computer Database Management System (DBMS)
Question #3 Report Error
Which SQL command is used to add new rows of data into an existing table?
A. APPEND
B. ADD
C. INSERT
D. UPDATE

Correct Answer: Option C


Explanation:
The INSERT command is a Data Manipulation Language (DML) statement used to add new records/rows to a table.

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