Kizspy Question: 8
(Choose 3 answers)
Analyze the following scenario and determine which MongoDB CRUD operations would be most beneficial.
Scenario: A task management application needs to handle operations where tasks can be created, retrieved,
updated, and deleted by users. Users should be able to update the status of a task and delete tasks that are
no longer needed.
A. Use insertOne to create new tasks.
B. Use find to retrieve tasks.
C. Use updateMany to delete tasks.
D. Use deleteOne to delete tasks.