MongoDB Certified DBA Associate Exam (Based on MongoDB 4.4) - C100DBA Exam Practice Test

Which is the correct order (lowest to highest) in which MongoDB compares the BSON types?
Correct Answer: C
Which of the following collections stores authentication credentials in MongoDB?
Correct Answer: B
Which of the following commands finds all the documents in the posts collection with post timestamp field as null?
Correct Answer: B
Below is a sample document in a given collection test.
{ a : 5, b : 3, c: 2, d : 1 }
Given a compound index { a: 1, b:l, c:l, d:l}, Which of the below query will not use in-memory sorting? Select all valid.
Correct Answer: A,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?
Correct Answer: C
The MongoDB explain() method does not support which of the following verbosity mode:
Correct Answer: A
Which of the following commands will return all the posts with number of likes greater than 100 and less than 200, both inclusive?
Correct Answer: A
You perform the following operation in the shell: db.foo.insert( { } ); What gets inserted?
Correct Answer: B