Difficulty: Easy
Correct Answer: Data is represented by tables.
Explanation:
Introduction / Context:
Relational database management systems (RDBMS) organize data using relations (commonly called tables). This model underpins widely used systems such as PostgreSQL, MySQL, SQL Server, and Oracle. Understanding how data is represented and accessed is foundational for database design and querying.
Given Data / Assumptions:
Concept / Approach:
In the relational model, a relation is a set of tuples organized as a table with rows and columns. SQL provides a declarative way to access and manipulate those tables. This approach emphasizes logical representation (tables) and set-based operations, which simplifies many common data tasks.
Step-by-Step Solution:
Verification / Alternative check:
Open any RDBMS tutorial or documentation: examples invariably show creating tables, inserting rows, and querying with SELECT. This confirms tables are the central abstraction.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing the relational model with specific storage engines or thinking SQL is inherently complex. Most complexity comes from data modeling choices, not from the relational approach itself.
Final Answer:
Data is represented by tables.
Discussion & Comments