

InterviewSolution
Saved Bookmarks
1. |
MongoDB documents are composed of field-and-value pairs and have the following structure?(a) field1:; value1(b) field1: value1;(c) field1: value1(d) none of the mentioned |
Answer» The correct answer is (c) field1: value1 The explanation: The value of a field can be any of the BSON data types, including other documents, arrays, and arrays of documents. |
|