What is the difference between a DBMS and an RDBMS? MCQ with Answer and Explanation

What is the difference between a DBMS and an RDBMS?
A. DBMS supports only flat files; RDBMS supports relational tables
B. There is no difference
C. DBMS is a subset of RDBMS
D. DBMS does not support relationships; RDBMS does
Answer: Option D
Solution (By JKSSB Mock Tests)
RDBMS is a type of DBMS that organizes data in tables with relationships, enforcing referential integrity using primary and foreign keys, while a DBMS may not support such relationships.

Discuss this Question (0)

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

Practice More Database Management System (DBMS) Questions

Question #1
Which of the following is a TCL (Transaction Control Language) command?
A. CREATE
B. SAVEPOINT
C. SELECT
D. DROP

Correct Answer: Option B


Explanation:
Transaction Control Language includes COMMIT, ROLLBACK, and SAVEPOINT.

This question belongs to: Computer Database Management System (DBMS)
Question #2
Which database structure is created to drastically speed up the retrieval of rows from a table at the expense of slower data updates?
A. View
B. Constraint
C. Schema
D. Index

Correct Answer: Option D


Explanation:
An Index is a performance optimization structure created on table columns to search and locate matching rows quickly without performing a full table scan.

This question belongs to: Computer Database Management System (DBMS)
Question #3
What is metadata?
A. Data about data
B. User data
C. Backup data
D. Temporary data

Correct Answer: Option A


Explanation:
Metadata is data that provides information about other data, such as structure and constraints.

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