Choose a topic to test your knowledge and improve your MongoDB skills
_____ store the relationships between data by including links or references from one document to another.
Point out the correct statement.
_________ documents capture relationships between data by storing related data in a single document structure.
Point out the wrong statement.
A ____________ data model with embedded data combines all related data for a represented entity in a single document.
_____ is a specification for storing and retrieving files that exceed the BSON-document size limit of 16MB.
Point out the correct statement.
By default GridFS limits chunk size to ______ k.
When you query a GridFS store for a file, the _______ will reassemble the chunks as needed.
Point out the wrong statement.
MongoDB represents queries as ___________ objects.
Each document in the __________ collection represents a distinct chunk of a file as represented in the GridFS store.
GridFS uses a _________ index on the chunks collection for the files_id and n fields.
The ___ field contains the sequence number of the chunk.
The GridFS index allows efficient retrieval of __________ using the files_id and n values.
____ is a binary serialization format used to store documents and make remote procedure calls in MongoDB.
Point out the correct statement.
Which of the following data type is depreciated?
Each data type has a corresponding number that can be used with the _______ operator to query documents by BSON type.
Point out the wrong statement.
There is _________ byte counter in BSON, starting with a random value.
In the mongo shell, you can access the creation time of the ObjectId, using the ______ method.
Object_Id is similar to _________ key in Relational Databases.
Which of the field is reserved for use as a primary key?
Point out the wrong statement.
To ensure functioning replication, do not store values that are of the _______ regular expression type in the _id field.
The ______ field is always the first field in the document.
____ returns the JavaScript representation in the form of a string literal.
Which of the following query is used to generate a new ObjectId, use the ObjectId() constructor with no argument?
The __________ JavaScript shell and the MongoDB language drivers translate between BSON and the language-specific document representation.
Point out the correct statement.
BSON is a binary representation of ________ documents.
MongoDB documents are composed of field-and-value pairs and have the following structure?
Point out the wrong statement.
To store documents larger than the maximum size, MongoDB provides the _______ API.
Index keys that are of the _______ type are more efficiently stored in the index.
MongoDB uses the ________ notation to access the elements of an array and to access the fields of an embedded document.
Which of the following data structures are documents in MongoDB?
Point out the correct statement.
An application communicates with MongoDB by way of a client library, called ____
User-defined indexes on multiple fields is called ______
If your driver has a version number of 2.9.1, What is the major version?
Updates that include _________ of field names may result in the reordering of fields in the document.
The $rename operator logically performs a _______ of both the old name and the new name.
To get a correct snapshot of a running mongod process, you must have _________ enabled.
Point out the correct statement.
The _______ tool reads data from a MongoDB database and creates high fidelity BSON files.
If your storage system does not support snapshots, you can copy the files directly using _____
Point out the wrong statement.
The _________ tool can populate a MongoDB database with the data from these BSON files.