1. Which statement about the difference between a database and a simple file store is MOST accurate?
- A. A database provides query processing, indexing, and transactional guarantees over managed data; a file store simply persists files✓ Correct
- B. Databases can only store text, while file stores can store any format
- C. File stores are always faster than databases for every workload
- D. Databases cannot run in the cloud
Explanation
What makes a database a database is its management layer: query engines, indexing, concurrency control, and transactional integrity over the data it holds. A file store persists blobs/files without interpreting them. Option B is backwards-ish nonsense — databases store many types. Option C fails for any workload needing queries or transactions. Option D is obviously false (Azure SQL, Cosmos DB).