Question: You would like to know how many different categories you have. Which query will best get the job done?
- `db.vehicle.distinct("category")`
 - `db.vehicle.unique("category")`
 - `db.vehicle.distinct("category").count()`
 - `db.vehicle.distinct("category").length`
 
Answer: The correct answer of the above question is Option D:`db.vehicle.distinct("category").length`