Which mongodb tools allow us to work with our data in a human readable format?
Which of the following needs to be performed prior to initiate backup on a sharded cluster?
Which of the documents below will be retrieved by the following query? Assume the documents are stored in a collection called "sample". Check all that apply.
db.sample.find( { "$or" : [ { "a" : { "$in" : [ 3, 10] > }, { "b" : { "$lt" : 2 > > ] > )
In a collection that contains 100 post documents, what does the following command do? db. posts. find().skip(5).limit(5)
Which mongodb tool is used to report details on number of database operations in MongoDB?
Which of the following aggregation commands in MongoDB does not support sharded collections?
Consider the following document from the products collection:
What does the following query using $elemMatch return? db.products.find( { product_code: "345678" }, { variations: { $elemMatch: { size: ^L^ } } } )