Which features of relational database management systems were deliberately omitted in MongoDB and help us to obtain horizontal scalability? Check all that apply.
Answer : 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?
Answer : C
Which of the following is a valid insert statement in mongodb? Select all valid.
Answer : B, C
To add a new user and enable authentication in MongoDB, which of the following steps need be executed?
Answer : C
Which of the following command is used to get all the indexes on a collection?
Answer : D
As per the aggregation pipeline optimization concepts, if you have a $sort followed by a $match:
Answer : D
What does the following $slice query return using the following command? db.posts.find( {}, { comments: { $slice: [ -10, 5 ] } } )
Answer : A