Here are 3 key questions about MongoDB: 1. What is MongoDB? MongoDB is an open source, document-oriented, NoSQL database that provides high performance, high availability, and automatic scaling. It stores data in flexible, JSON-like documents, allowing for schema-less design. 2. How does MongoDB handle large data? MongoDB uses a concept called GridFS to break files into chunks and store metadata about the file in the database. This allows for efficient storage and retrieval of large files. 3. How does MongoDB scale? MongoDB scales horizontally by sharding data across multiple servers. It splits collections into chunks which can be distributed across shards. The balancer component monitors shard loads and migrates chunks between shards for improved distribution