Database (DB) Interview questions and answers: SQL, Normalization, and Architecture | DB quiz challenge
Test your knowledge of **Database Fundamentals, Data Modeling, SQL Optimization, and Advanced Concepts**. **Pass with 80% to proceed to the next difficulty level.**
Level 1: Core SQL & Basics: 0/10 (0%)
Level 2: Normalization & Transactions: 0/10 (0%)
Level 3: Advanced Optimization & Features: 0/10 (0%)
Level 1: Core SQL & Basics
1.1 Which subset of SQL is responsible for defining the database schema, such as `CREATE`, `ALTER`, and `DROP`?
**Correct Answer: B. DDL (Data Definition Language)**. DDL commands define the database structure or schema.
**End of Core SQL & Basics. Click "Next Level" to continue.**
Level 2: Normalization & Transactions
2.1 What is the goal of **Database Normalization**?
**Correct Answer: B. To eliminate redundant data...**. Normalization reduces data anomalies (insertion, deletion, update) by breaking tables into smaller, related tables.
**End of Normalization & Transactions. Click "Next Level" to continue.**
Level 3: Advanced Optimization & Features
3.1 What is the primary operational difference between a **Clustered Index** and a Non-Clustered Index?
**Correct Answer: B. A Clustered Index dictates the physical...**. A table can only have one Clustered Index (since data can only be sorted one way), but many Non-Clustered Indexes.
**DB Mastered! Click "Finish Quiz" to see your final summary.**
Comments
Post a Comment