DBMS-Introduction to Database Design Questions and Answers
Practice ModeShowing 10 of 50 questions
Q41
What is database view?
Answer: Option A
Explanation: A view is a virtual table based on the result of a SQL query, providing a customized data perspective.
Q42
Which normal form is the highest for most practical purposes?
Answer: Option A
Explanation: Boyce-Codd Normal Form (BCNF) is stronger than 3NF and sufficient for most database designs.
Q43
What is data mining?
Answer: Option A
Explanation: Data mining discovers patterns and relationships in large datasets to extract valuable information.
Q44
Which SQL clause sorts results?
Answer: Option A
Explanation: ORDER BY clause sorts the result set in ascending or descending order based on specified columns.
Q45
What is database transaction?
Answer: Option A
Explanation: A transaction is a logical unit of work that contains one or more SQL statements, following ACID properties.
Q46
Which key uniquely identifies records in a table?
Answer: Option A
Explanation: Primary key uniquely identifies each record in a table and must contain unique, non-null values.
Q47
What is concurrency control?
Answer: Option A
Explanation: Concurrency control manages simultaneous operations on the database without conflict, ensuring data consistency.
Q48
Which SQL command retrieves data?
Answer: Option A
Explanation: SELECT command retrieves data from one or more database tables based on specified criteria.
Q49
What is database backup?
Answer: Option A
Explanation: Database backup creates copies of data to restore in case of data loss, corruption, or system failure.
Q50
Which constraint defines primary key?
Answer: Option A
Explanation: PRIMARY KEY constraint uniquely identifies each record and automatically creates a unique index.