Question:medium

Which of the following is a characteristic of a relational database?

Show Hint

Relational databases use tables with rows and columns to store and manage data, making them highly structured and efficient.
Updated On: Jan 16, 2026
  • Data stored in key-value pairs
  • Data organized in tables with rows and columns
  • Data stored in a hierarchical structure
  • Data stored as a graph
Show Solution

The Correct Option is B

Solution and Explanation

A relational database organizes data into tables, where rows signify records and columns denote attributes. Tables are linked via keys, enhancing efficiency in data management and querying.
- Key-value pair storage (A) is typical of NoSQL databases like key-value stores.
- Hierarchical structure storage (C) characterizes hierarchical databases, which employ a tree-like organization.
- Graph data storage (D) pertains to graph databases, representing data as nodes and edges.
Consequently, the correct option is (B): relational databases utilize tables for data storage.
Was this answer helpful?
0