What is a data dictionary in a DBMS? MCQ with Answer and Explanation

What is a data dictionary in a DBMS?
A. A log file
B. A repository of metadata about the database
C. A backup of the database
D. A table containing user data
Answer: Option B
Solution (By JKSSB Mock Tests)
The data dictionary stores metadata such as table definitions, column types, constraints, and other database objects.

Discuss this Question (0)

No comments yet. Be the first to start the discussion!

Practice More Database Management System (DBMS) Questions

Question #1
What is the result of the SQL query: SELECT * FROM employees;?
A. All rows and all columns from the employees table
B. Only the primary key column
C. Only the first row
D. An empty result

Correct Answer: Option A


Explanation:
SELECT * retrieves all columns and rows from the specified table.

This question belongs to: Computer Database Management System (DBMS)
Question #2
A key that consists of more than one attribute to uniquely identify rows in a table is called a what?
A. Foreign Key
B. Composite Key
C. Primary Key
D. Secondary Key

Correct Answer: Option B


Explanation:
When a primary key or unique key comprises two or more columns (attributes) combined together, it is known as a Composite Key.

This question belongs to: Computer Database Management System (DBMS)
Question #3
Which of the following ensures data integrity in RDBMS?
A. User input without checks
B. Random data entry
C. Constraints like primary key, foreign key
D. No validation rules

Correct Answer: Option C


Explanation:
Integrity constraints such as keys enforce rules for valid data.

This question belongs to: Computer Database Management System (DBMS)