Question:medium

What type of database model uses tables with rows and columns?

Show Hint

The terms are often used interchangeably: In the relational model, a table is a relation, a row is a tuple, and a column is an attribute.
Updated On: Jul 2, 2026
  • Hierarchical Model
  • Relational Model
  • Object Oriented Model
  • Network Model
Show Solution

The Correct Option is B

Solution and Explanation

Step 1: Picture the structure being described.
Think of an ordinary spreadsheet, a grid with rows going across and columns going down, where each row is one record and each column is one attribute of that record.
Step 2: Match this picture to a database model.
This exact grid structure is what the relational model calls a table, or formally a relation. Rows are called tuples and columns are called attributes, and this is the model used by virtually every mainstream SQL database like MySQL, PostgreSQL, and Oracle.
Step 3: Contrast with the other models.
The hierarchical model arranges data as a tree with parent child links, the network model generalises that into a graph allowing multiple parents, and the object oriented model stores data as objects with attached behaviour, none of these are built around a simple grid of rows and columns.
Step 4: Conclude.
The model built entirely around tables of rows and columns is the
\[ \boxed{\text{Relational Model}} \]
Was this answer helpful?
0