Which model represents data in the form of tables? MCQ with Answer and Explanation

Which model represents data in the form of tables?
A. Hierarchical model
B. Entity-Relationship model only
C. Relational model
D. Network model
Answer: Option C
Solution (By JKSSB Mock Tests)
The relational model uses tables (relations) to represent data and 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 SQL command is used to reverse or undo all modifications made during the current transaction that have not yet been committed?
A. REVERT
B. SAVEPOINT
C. ROLLBACK
D. UNDO

Correct Answer: Option C


Explanation:
The ROLLBACK command is a TCL statement used to undo transactions, restoring the database to its last committed or safe state.

This question belongs to: Computer Database Management System (DBMS)
Question #2
Which of the following is NOT an advantage of DBMS over traditional file systems?
A. Data independence
B. Simpler implementation and lower cost
C. Higher data security
D. Data redundancy control

Correct Answer: Option B


Explanation:
DBMS generally involves higher initial costs and complexity compared to simple file systems, though it offers better control over redundancy, independence, and security.

This question belongs to: Computer Database Management System (DBMS)
Question #3
Which property of ACID ensures that a transaction is treated as a single unit that either fully succeeds or fully fails?
A. Durability
B. Atomicity
C. Isolation
D. Consistency

Correct Answer: Option B


Explanation:
Atomicity ensures that all operations within a transaction are completed successfully; otherwise, the transaction is aborted and all changes are rolled back.

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