

InterviewSolution
Saved Bookmarks
1. |
The ___________ JavaScript shell and the MongoDB language drivers translate between BSON and the language-specific document representation.(a) mongod(b) mongo(c) json(d) none of the mentioned |
Answer» Correct choice is (b) mongo Explanation: MongoDB stores documents on disk in the BSON serialization format. BSON is a binary representation of JSON documents, though it contains more data types than JSON. |
|