Which database optimization technique reorganizes data storage to improve query performance?
- Indexing
- Partitioning
- Clustering
- All of these
Answer: All of these
Indexing speeds lookups; partitioning splits large tables; clustering physically orders data by key. All improve query performance. Critical for database tuning questions.