In a document-oriented NoSQL database, what is the basic unit of data?
- aA fixed row that must match a predefined table schema
- bA self-describing document (e.g. JSON/BSON) that can hold nested fields✓
- cA single value retrieved only by its exact key
- dA node connected to other nodes by labeled edges
Explanation:Document stores keep data as self-describing documents (JSON/BSON), so each document carries its own structure and can nest fields and arrays. A fixed table row (a) describes the relational model; retrieval only by key (c) is the key-value model; nodes and edges (d) describe a graph database.