Difficulty: Easy
Correct Answer: All of the above.
Explanation:
Introduction / Context:
Database applications implement CRUD operations: Create, Read, Update, and Delete. These operations are fundamental to managing persistent data for business processes, analytics, and applications of all sizes.
Given Data / Assumptions:
Concept / Approach:
SQL statements such as INSERT (create), SELECT (read), UPDATE (update), and DELETE (delete) embody CRUD in relational systems. Applications expose these through forms, APIs, and services. Security and validation govern who can perform which operations.
Step-by-Step Solution:
Verification / Alternative check:
Any standard application (for example, inventory, CRM) requires creating new entries, reading them, and modifying them as statuses or attributes change.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing data access permissions with system capability. Even if a user is read-only, the system as a whole still supports full CRUD via authorized roles.
Final Answer:
All of the above.
Discussion & Comments