

InterviewSolution
Saved Bookmarks
1. |
The mongo shell and the MongoDB drivers use __________ as the default write concern.(a) Nacknowledged(b) Acknowledgement(c) Acknowledged(d) All of the mentionedI had been asked this question during a job interview.This is a very interesting question from Write operations topic in portion MongoDB CRUD Concepts and Operation of MongoDB |
Answer» CORRECT option is (c) Acknowledged The explanation: MongoDB allows clients to READ documents INSERTED or MODIFIED before it commits these modifications to disk, regardless of write concern level or journaling CONFIGURATION. |
|