Which type of indexes does MongoDB support?
Answer : A
Which is the default mode in which the explain() command runs?
Answer : C
When should we consider representing a one-to-many relationship in an embedded collection instead of separate collection?
Answer : A
Which of the following about Capped Collections is correct?
Answer : B
Which of the following aggregate commands in MongoDB uses a pipeline approach with the goals of improving the aggregation performance?
Answer : C
What does the output x of the following MongoDB aggregation query result into; db.posts.aggregate( [ { $group: { _id; "$author", x: { $sum: $likes } } } ] )
Answer : D
Given a collection posts as shown below having a document array comments, which of the following command will create an index on the comment author descending?

Answer : C