Question:medium

Which of the following is NOT a type of database model?

Show Hint

The main database models are relational, hierarchical, and network, while sequential refers to how data is accessed, not how it is organized.
Updated On: Jan 16, 2026
  • Relational
  • Hierarchical
  • Network
  • Sequential
Show Solution

The Correct Option is D

Solution and Explanation

Four primary database models exist:
- Relational (A): Data is structured into tables (relations) with interconnections established via foreign keys.
- Hierarchical (B): Data is arranged in a tree structure, defining parent-child relationships for each record.
- Network (C): Data is organized as a graph, with nodes representing entities and edges signifying their relationships.
- Sequential (D) is not a database model. It describes a data access method where records are processed sequentially, commonly found in flat-file databases, but not a distinct model type.
Consequently, the correct selection is (D).
Was this answer helpful?
0