Question:medium

Which of the following formats, data is stored in relational database management system?

Show Hint

In relational databases, data is organized into tables, making it easier to manage and query.
Updated On: May 7, 2026
  • Graph
  • Table
  • Binary
  • Object
Show Solution

The Correct Option is B

Solution and Explanation

A Relational Database Management System (RDBMS) is based on the relational model, which was proposed by E. F. Codd.
The fundamental principle of the relational model is that all data is stored and represented in two-dimensional structures called relations.
In common parlance, these relations are known as tables.
Each table consists of rows (also called tuples or records) and columns (also called attributes or fields).
While data is ultimately stored in binary format on the disk, the logical structure and format in an RDBMS is the table.
Graph databases store data in graphs, and Object databases store data as objects.
Was this answer helpful?
0