Difficulty: Easy
Correct Answer: Incorrect
Explanation:
Introduction / Context:
Although both spreadsheets and relational tables have rows and columns, a database is not a spreadsheet. A DBMS provides schemas, constraints, indexing, ACID transactions, concurrency control, and a declarative query language (SQL). Spreadsheets are end-user tools without the same guarantees.
Given Data / Assumptions:
Concept / Approach:
Relational databases model entities and relationships with types, keys, and constraints. They support concurrent access, backups, recovery, and large-scale workloads. Spreadsheets lack transactional guarantees and are not designed for multi-user, auditable, high-volume operations.
Step-by-Step Solution:
Identify core DBMS features: DDL, DML, constraints, indexes, transactions. Contrast with spreadsheets: cell-level formulas but minimal integrity enforcement. Conclude that databases are fundamentally different tools despite superficial tabular similarity.
Verification / Alternative check:
Consider how role-based security, backups, and query optimization work in a DBMS—capabilities not inherent to spreadsheets.
Why Other Options Are Wrong:
“Correct” confuses the UI likeness with system capabilities. Size or file format (CSV) does not convert a spreadsheet into a database.
Common Pitfalls:
Assuming spreadsheet tabs = database tables; ignoring constraints and transactions as defining features of DBMSs.
Final Answer:
Incorrect
Discussion & Comments