

InterviewSolution
Saved Bookmarks
1. |
MongoDB represents queries as ___________ objects.(a) BSON(b) JSON(c) GSON(d) None of the mentionedThis question was addressed to me during an online interview.My question comes from GridFS in chapter GridFS, BSON Datatype and Administration Concepts of MongoDB |
Answer» CORRECT choice is (a) BSON To elaborate: As a client program ASSEMBLES a query in MONGODB, it BUILDS a BSON OBJECT, not a string. |
|