#15Multiple Choice
Given a sample collection called collection, in which all documents have the following shape:
{
_id:1,
a:{
b:[1,2,3],
c:”example”
}
}
And the following query:
db.collection.find({“a.b”:2})
Which two indexes will improve the performance of that query? (Choose two.)