Suposse tou have the following collection with only 2 documents:
If you run an aggregation query and use { $unwind: "$traits" } as the first stage, how many documents will be passed to the next stage of the aggregation pipeline?
Answer : B
The MongoDB explain() method does not support which of the following verbosity mode:
Answer : A
The MongoDB explain() method does not support which of the following verbosity mode:
Answer : C
What is the equivalent command in MongoDB for the following SQL query?
SELECT * FROM posts WHERE author like "%john%"
Answer : A
Which of the following about Capped Collections is correct?
Answer : B
Which of the following aggregation commands in MongoDB does not support sharded collections?
Answer : B
What does the following query do when performed on the posts collection? db.posts.update({_id:l},{Title:This is post with ID 1"})
Answer : B