While going through some MongoDB questions, I came across the following:
Point out the correct statement :
a) Whether the use of a compound index or the use of an index intersection is more efficient depends on the particular query and the system
b) Certain restrictions apply to indexes, such as the length of the index keys or the number of indexes per collection
c) For queries that specify compound query conditions, if one index can fulfill a part of a query condition, and another index can fulfill another part of the query condition, then MongoDB can use the intersection of the two indexes to fulfill the query
d) None of the mentioned
per my understanding of compound-index vs index-intersection, a) is the correct answer. However, the correct answer is marked as d)
Could anyone please explain why is d) the correct answer?