Question: Using the MongoDB shell, how do you remove the customer collection and its indexes?

  1. `db.customers.remove({}).indexes();`
  2. `db.customers.remove({});`
  3. `db.customers.drop();`
  4. `db.customers.delete();`

Answer: The correct answer of the above question is Option C:`db.customers.drop();`