Exam Code: C100DEV
Exam Questions: 411
MongoDB Certified Developer Associate
Updated: 04 Sep, 2026
Viewing Page : 1 - 42
Practicing : 1 - 5 of 411 Questions
Question 1

You are developing a blogging platform using MongoDB as the database. Each blog post document has a tags array field that holds a list of strings. You are tasked to implement a search functionality that allows users to find blog posts based on the tags. Which of the following MongoDB features would you utilize to implement this functionality efficiently?

Options :
Answer: C

Question 2

When sharding a MongoDB collection, what is the main factor that determines the distribution of data across shards?

Options :
Answer: D

Question 3

Suppose you have a products collection with an index:
{ product_category: 1 }
For which of the following queries can MongoDB look at only a subset of the index entries, rather than all of the index entries?

Options :
Answer: D

Question 4

You have a MongoDB collection named employees that contains documents with fields name, department, and salary. You want to update the salary of all employees in the "Marketing" department to $75,000. The original collection looks like this:
[
  { "_id": 1, "name": "Alice", "department": "Marketing", "salary": 60000 },
  { "_id": 2, "name": "Bob", "department": "Sales", "salary": 55000 },
  { "_id": 3, "name": "Charlie", "department": "Marketing", "salary": 62000 },
  { "_id": 4, "name": "David", "department": "Engineering", "salary": 70000 }
]
You run the following MongoDB update operation:
db.employees.updateMany(
  { "department": "Marketing" },
  { $set: { "salary": 75000 } }
)
What will the collection look like after this update operation?

Options :
Answer: C

Question 5

What is the correct syntax to insert multiple documents into a MongoDB collection named orders and return the _id values for all inserted documents?

Options :
Answer: B

Viewing Page : 1 - 42
Practicing : 1 - 5 of 411 Questions

© Copyrights FreePDFQuestions 2026. All Rights Reserved

We use cookies to ensure that we give you the best experience on our website (FreePDFQuestions). If you continue without changing your settings, we'll assume that you are happy to receive all cookies on the FreePDFQuestions.