Question: Which MongoDB shell command deletes a single document?
- `db.customers.delete({_id: 1});`
- `db.customers.drop({_id: 1});`
- `db.drop.customers({_id: 1});`
- `db.customers.remove({_id: 1});`
Answer: The correct answer of the above question is Option D:`db.customers.remove({_id: 1});`