DBMS-Introduction to Database Design Questions and Answers
Practice ModeShowing 10 of 50 questions
Q1
What is the primary purpose of a database management system?
Answer: Option A
Explanation: DBMS serves as an interface between database and users/applications, enabling data storage, retrieval, and management.
Q2
Which of the following is NOT a characteristic of DBMS?
Answer: Option C
Explanation: DBMS provides data independence, security, and concurrency control but doesn't guarantee complete data redundancy elimination.
Q3
What is data redundancy in database systems?
Answer: Option A
Explanation: Data redundancy refers to unnecessary duplication of data in the database, which can lead to inconsistencies.
Q4
Which data model represents data as tables?
Answer: Option A
Explanation: The relational model organizes data into tables (relations) with rows and columns.
Q5
What is an entity in database design?
Answer: Option A
Explanation: An entity is a real-world object or concept that can be distinctly identified and about which data is stored.
Q6
What is the purpose of a primary key?
Answer: Option A
Explanation: A primary key uniquely identifies each record in a table and cannot contain null values.
Q7
Which normal form eliminates transitive dependencies?
Answer: Option A
Explanation: Third Normal Form (3NF) requires that all attributes depend only on the primary key, eliminating transitive dependencies.
Q8
What is data abstraction in DBMS?
Answer: Option A
Explanation: Data abstraction hides complex implementation details and shows only essential features to users.
Q9
Which SQL command is used to create a database?
Answer: Option A
Explanation: CREATE DATABASE command is used to create a new database in SQL.
Q10
What is a foreign key?
Answer: Option A
Explanation: A foreign key establishes a relationship between two tables by referencing the primary key of another table.