

InterviewSolution
Saved Bookmarks
1. |
___________ is used to determine whether a query is a covered query.(a) explainstats()(b) explain()(c) explainall()(d) all of the mentionedI have been asked this question in my homework.The origin of the question is Analyze Query Performance in section MongoDB CRUD Concepts and Operation of MongoDB |
Answer» RIGHT ANSWER is (B) explain() The BEST explanation: db.collection.explain() provides information on the EXECUTION of other operations, such as db.collection.update(). |
|