

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 mentioned |
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(). |
|