Which of the following statements are true about the $match pipeline operator? Check all that apply.
A, B, C
Consider the following document:
> db.c.find()
{ "_id" : 12, b : [ 3, 5, 7, 2, 1, -4, 3, 12 ] }
Which of the following queries on the "c" collection will return only the first five elements of the
array in the "b"
field? E.g.,
Document you want returned by your query:
{ "_id" : 12, "b" : [ 3, 5, 7, 2, 1 ] >
A
What tool do you use if you want to extract a CSV from mongo?
mongoexport
Which of the following is true of the mechanics of replication in MongoDB? Check all that apply.
C
What tool do you use to see if you have a problem in the consumption of disk I / 0?
Mongoperf
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?
B
What tool would you use if you want to save a gif file in mongo?
mongofile
Which features of relational database management systems were deliberately omitted in MongoDB
and help us to obtain horizontal scalability? Check all that apply.
A, B
In order to ensure that you can maintain high availability in the face of server failure, you should
implement which of the following?
C
Which of the following is a valid insert statement in mongodb? Select all valid.
B, C