MongoDB Import/Export Exercises
1. Import Task
- Use the '[Link]' file and import it into a MongoDB database named 'college'.
- Collection name should be 'students'.
2. Query Tasks
- Display all students.
- Find students from the CSE department.
- Find students with marks greater than 80.
- Count how many students are in the database.
3. Export Task
- Export the 'students' collection into a file named 'students_backup.json'.
4. Modify and Re-import
- Edit the JSON file and add 2 new student records.
- Re-import with --drop option to replace old data.