Question 1: Why can poorly designed indexes degrade MongoDB write performance?
- Indexes consume network bandwidth
- Indexes increase memory fragmentation
- Indexes must be updated on every write
- Indexes block read operations
Explanation: Every write must update all relevant indexes, slowing write performance.