Answer: c) MongoDB
Relational Database (RDBMS):
1. Stores data in tables (rows & columns).
2. Follows relational model proposed by E.F. Codd.
3. Uses SQL (Structured Query Language).
4. Examples: Oracle, MySQL, PostgreSQL, SQL Server.
Non-Relational Database (NoSQL):
1. Stores data in other formats (document, key-value, graph, wide-column).
2. Flexible schema (no need for strict table structure).
3. Often used for big data, real-time apps, unstructured/semi-structured data.
Examples: MongoDB, Cassandra, CouchDB, Neo4j.
MongoDB specifically:
It is a document-oriented NoSQL database.
Stores data in JSON-like documents (BSON internally).