Difficulty: Easy
Correct Answer: reports
Explanation:
Introduction / Context:
When teaching database fundamentals, it is important to distinguish what is actually stored and managed by the database engine versus what belongs to application layers. This question tests awareness of core database components.
Given Data / Assumptions:
Concept / Approach:
A database primarily stores persistent user data and its descriptive metadata. It may also store internal performance aids such as indexes and statistics. Reports, however, are not intrinsic components of the database; they are generated artifacts that can be created by applications reading the database.
Step-by-Step Solution:
Verification / Alternative check:
Open any relational catalog (for example, system tables). You will find schemas, tables, columns, constraints, and index definitions. You will not find application-specific report layouts as first-class, required catalog objects.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing the broader information system (which includes applications and reports) with the DBMS-managed database. Reports can be stored as files or definitions elsewhere, but they are not a core component of the database itself.
Final Answer:
reports
Discussion & Comments