DBMS-Introduction to Database Design Questions and Answers
Practice ModeShowing 10 of 50 questions
Q11
Which of the following is a DBMS software?
Answer: Option A
Explanation: MySQL is a popular open-source relational database management system.
Q12
What does ACID stand for in database transactions?
Answer: Option A
Explanation: ACID properties ensure reliable processing of database transactions: Atomicity, Consistency, Isolation, Durability.
Q13
What is the role of DDL in database systems?
Answer: Option A
Explanation: Data Definition Language (DDL) is used to define and modify database structure (CREATE, ALTER, DROP).
Q14
Which constraint ensures column cannot have NULL values?
Answer: Option A
Explanation: NOT NULL constraint prevents a column from containing null values.
Q15
What is an ER diagram used for?
Answer: Option A
Explanation: Entity-Relationship diagrams visually represent the logical structure of databases.
Q16
Which normal form deals with multivalued dependencies?
Answer: Option A
Explanation: Fourth Normal Form (4NF) addresses multivalued dependencies in database design.
Q17
What is data integrity?
Answer: Option A
Explanation: Data integrity ensures accuracy, consistency, and reliability of data throughout its lifecycle.
Q18
Which SQL clause is used to filter records?
Answer: Option A
Explanation: WHERE clause filters records based on specified conditions in SQL queries.
Q19
What is database normalization?
Answer: Option A
Explanation: Normalization organizes data to reduce redundancy and improve data integrity in databases.
Q20
Which key can have NULL values?
Answer: Option A
Explanation: Foreign keys can contain null values when there is no related record in the primary table.