C100DBA · Question #71
Which mongodb tools allow us to work with our data in a human readable format?
The correct answer is C. 1. Option C is correct because exactly 1 MongoDB tool - mongoexport - is designed to work with data in a human-readable format (JSON or CSV). Other core tools like mongodump produce BSON output, which is a binary format that humans cannot read directly without conversion. Options A
Question
Which mongodb tools allow us to work with our data in a human readable format?
Options
- A7
- B2
- C1
- D0
How the community answered
(33 responses)- A3% (1)
- B3% (1)
- C88% (29)
- D6% (2)
Explanation
Option C is correct because exactly 1 MongoDB tool - mongoexport - is designed to work with data in a human-readable format (JSON or CSV). Other core tools like mongodump produce BSON output, which is a binary format that humans cannot read directly without conversion.
Options A (7) and B (2) are wrong because they overcount - there aren't 7 or 2 MongoDB tools in this category; only mongoexport is purpose-built for human-readable export. Option D (0) is wrong because dismissing human-readable tools entirely ignores mongoexport's explicit JSON/CSV support.
Memory tip: Think of "export = expose" - mongoexport exposes your data in a readable form (JSON/CSV), while mongodump dumps raw binary BSON that only machines can parse natively. One tool, one readable format.
Topics
Community Discussion
No community discussion yet for this question.