

InterviewSolution
Saved Bookmarks
1. |
Point out the correct statement.(a) Update definitions define what fields to modify during an update(b) Query specifications, which define what fields to index(c) Index selectors, which define what records to select for read, update, and delete operations(d) All of the mentioned |
Answer» Correct answer is (a) Update definitions define what fields to modify during an update To explain: MongoDB stores all data in documents, which are JSON-style data structures composed of field-and-value pairs. |
|