What is a core concept of data modeling in MongoDB?
Organizing data into documents with a flexible schema
Representing data in a tabular format with rows and columns
Strictly enforcing data types and relationships
Using joins to query data across multiple collections
When creating a single field index, what value indicates ascending sort order?
-1
ASC
DESC
1
What is the role of the MongoClient object in a MongoDB Node.js application?
MongoClient
To create and manage user accounts
To execute queries against the database
To establish a connection to the MongoDB server
To define the database schema
The Attribute Pattern in MongoDB is best suited for:
Representing hierarchical relationships between entities
Managing evolving schemas and varying attributes for different documents
Storing a large, sparse matrix of data
Optimizing geospatial queries for location-based data
What is the primary difference between SQL and MongoDB's data models?
SQL is table-based, MongoDB is document-based.
SQL is NoSQL, MongoDB is relational.
SQL is document-based, MongoDB is table-based.
SQL uses JSON, MongoDB uses BSON.
Which of the following best describes the relationship between documents and collections in MongoDB?
Collections define the structure of a document
Collections are made up of multiple documents
Documents are fields within a collection
Documents and collections are unrelated
Which of the following is NOT a key consideration when designing a schema in MongoDB?
Document size and growth potential
Data relationships and access patterns
Data normalization to eliminate redundancy
Query patterns and performance requirements
What is a collection in MongoDB?
A user account
A specific data type
A table-like structure containing documents
A group of databases
How do you delete a database in MongoDB?
remove database
delete database
erase database
drop database
How are relationships between documents typically managed in MongoDB?
Joins, similar to SQL.
Embedded documents or references.
Foreign keys, like in relational databases.
Through data duplication across collections.