Choose a topic to test your knowledge and improve your MongoDB skills
The ________ message is used to update a document in a collection.
Point out the correct statement.
___ can modify specific fields of an existing document or documents or replace an existing document entirely, depending on the update parameter.
The update() method uses the _______ command, which uses the default write concern.
____ is used to view statistics about the query plan for a given query.
A ________ query plan has returned a threshold number of matching results.
A query _______ consists of a combination of query, sort, and projection specifications.
____ store the relationships between data by including links or references from one document to another.
Point out the correct statement.
In MongoDB, write operations are atomic at the __________ level.
______ 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.
For the __________ storage engine, if the document size exceeds the allocated space for that document, MongoDB relocates the document on disk.
With MongoDB 3.0.0, the default use of the Power of _________ Allocations minimizes the occurrences of re-allocations as well as allows for the effective reuse of the freed record space.
______ strategy is used to explicitly avoid document growth.
Each index in MongoDB requires at least _________ of data space.
______ data models allow applications to store related pieces of information in the same database record.
Point out the correct statement.
Embedded data model is used when you have _________ relationships between entities.
Normalized data models describe relationships using ___________ between documents.
Point out the wrong statement.
To interact with embedded documents, use ___________ notation to “reach into” embedded documents.
MongoDB using the mmapv1 storage engine has limits on the number of ____
To get the current number of namespaces in the mongo shell, use ______
The __________ feature of collections expires documents after a period of time.
Capped collections provide __________ management of inserted documents in MongoDB.
______ is a specification for storing and retrieving files that exceed the BSON-document size limit of 16MB.
Point out the wrong statement.
How many does collections GridFS use to store files?
The default chunk size is changed from 256k to 255k in which version?
Point out the wrong statement.
Which of the collection in GridFS stores the binary chunks?
_____ is the _id is of the data type chosen for the original document in files collections.
Which of the following checks and repairs errors and inconsistencies in data storage?
The files_id field contains the _id of the chunk’s __________ document.
Which of the following field allows efficient retrieval of chunks?
Which of the following relationship uses references to describe documents between connected data?
Point out the correct statement.
If the address data is frequently retrieved with the name information, how will you modify the following schema representing one to one relationship with referencing? { _id: "joe", name: "Joe Bookreader" } { patron_id: "joe", street: "123 Fake Street", city: "Faketon", state: "MA", zip: "12345" }
Which of the following is used to avoid the repetition of data in MongoDB schema?
Point out the wrong statement.
____ define what records to select for read, update, and delete operations.
The ___________ JavaScript shell and the MongoDB language drivers translate between BSON and the language-specific document representation.
Which of the following statement is incorrect about documents in MongoDB?
The ________ References pattern stores each tree node in a document; in addition to the tree node, the document stores the id of the node’s parent.
Point out the correct statement.
The ________ Links pattern provides a simple solution to tree storage but requires multiple queries to retrieve subtrees.
The _________ References pattern stores each tree node in array the id(s) of the node’s children.
Point out the wrong statement.