Difficulty: Easy
Correct Answer: Incorrect
Explanation:
Introduction / Context:
This item checks your understanding of how database products are classified, particularly the distinction between desktop databases and enterprise-class database management systems (DBMS). Knowing which tools fit which scenario is crucial for architecture, security, concurrency, and scaling decisions.
Given Data / Assumptions:
Concept / Approach:
Enterprise-class DBMSs (for example, Microsoft SQL Server, Oracle Database, PostgreSQL, IBM Db2) are designed for server-side deployment, multiple concurrent users, strong transactional guarantees, and operational tooling for 24x7 workloads. Microsoft Access, by contrast, is optimized for single-user or very small workgroup solutions, rapid form/report creation, and ad-hoc data management on the desktop, often using an .accdb file store or linking to an external server.
Step-by-Step Solution:
Verification / Alternative check:
In many organizations, Access is used as a client front-end while data lives in SQL Server or another server DBMS. That pattern itself demonstrates that Access is not the enterprise engine but rather a convenient application layer or prototype tool.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing "can connect to enterprise DBMS" with "is itself enterprise-class"; assuming file-shared multi-user scenarios scale safely (they typically do not for enterprise workloads).
Final Answer:
Incorrect
Discussion & Comments