Which of the following is an example of a NoSQL database? MCQ with Answer and Explanation

Which of the following is an example of a NoSQL database?
A. PostgreSQL
B. MySQL
C. Oracle
D. MongoDB
Answer: Option D
Solution (By JKExamLibrary)
MongoDB is a document-oriented NoSQL database. PostgreSQL, MySQL, and Oracle are RDBMS.

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

Discuss this Question (0)

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

Practice More Database Management System (DBMS) Questions

Question #1 Report Error
Which database structure is created to drastically speed up the retrieval of rows from a table at the expense of slower data updates?
A. Constraint
B. View
C. Index
D. Schema

Correct Answer: Option C


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 #2 Report Error
What is the purpose of a Foreign Key?
A. To create indexes
B. To link two tables and enforce referential integrity
C. To uniquely identify records
D. To sort data

Correct Answer: Option B


Explanation:
A foreign key establishes a relationship between tables and maintains referential integrity.

This question belongs to: Computer Database Management System (DBMS)
Question #3 Report Error
How many fundamental rules did E.F. Codd define to determine whether a database system qualifies as a true relational database management system?
A. 14 rules
B. 12 rules
C. 10 rules
D. 8 rules

Correct Answer: Option B


Explanation:
E.F. Codd formulated 12 rules (numbered 0 to 11, often called Codd's 12 Rules) to evaluate relational database management systems.

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