Choose a topic to test your knowledge and improve your MongoDB skills
MongoDB’s _______ is a database profiling system that can help identify inefficient queries and operations.
With the _______ storage engine, MongoDB uses memory-mapped files to store data.
Point out the correct statement.
The memory usage statuses metrics of the _________ output can provide insight into MongoDB’s memory use.
Point out the wrong statement.
You can inspect __________ to check the amount of mapped memory that mongod is using.
MongoDB reports its triggered page faults as the total number of page faults in ________ second.
Which of the operator is used to access the query field of documents within system.profile?
____ returns information on the query plan for aggregate function.
By default, db.collection.explain() runs in ___________ verbosity mode.
____ does not provide query execution information for the rejected plans.
Which of the following provides information on the MongoDB instance?
_____ corresponds to the millis field returned by cursor.explain() in earlier versions of MongoDB.
For sharded collections, explain returns the __________ for each accessed shard.
Point out the wrong statement.
If the query planner selects a collection scan, the explain result includes a _________ stage.
Which of the following parameter specifies the verbosity mode for the explain output?
In _____________ mode, MongoDB returns statistics describing the execution of the winning plan as well as statistics for the other candidate plans captured during plan selection.
If the query planner selects a _________ the explain result includes an IXSCAN stage.
MongoDB stores additional instance-local metadata in the _______ database.
Point out the correct statement.
In replica sets, each ________ maintains a connection to all other members of the set.
The ___________ collection stores the user’s authentication credentials as well as any roles assigned to the user.
Point out the wrong statement.
The <database>.system.indexes collection lists all the _________ in the database.
Which of the following The collection holds special JavaScript code for use in server side JavaScript?
Which of the following can store JavaScript functions for reuse?
___ is used to load all the scripts saved in the system.js collection for the current database.
Which of the following information is captured by database profiler?
Point out the correct statement.
Which of the following collection is capped?
The ___________ provides information for various lock types and lock modes held during the operation.
Point out the wrong statement.
Which of the following keyword represents lock on the collection?
How many types of locking modes exist in MongoDB?
Which of the following represents number of times the operation acquired the lock in the specified mode?
____ can be used to limit the size of the result document for a query operation.
Which of the following code is used for the successful exit of task?
Point out the correct statement.
Instance exits cleanly are represented by ___ exit code.
Which of the following code is returned by mongod if a moveChunk operation fails to confirm a commit?
Point out the correct statement.
Which of the following code represents exit cleanly following a large clock skew (32768 milliseconds) event?
49 code is returned by mongod from _________ Service control Manager.
Which of the following code is returned when a MongoDB application cannot open a file?
Identify the message returned by MongoDB applications for Windows due to failures installing?
Which of the following document represents uncaught exception?
Which of the following method is used for managing user?
Point out the correct statement.
MongoDB stores user information in the _________ collection.