This visual execution shows how MongoDB verifies index usage when running a query. First, the query runs and the query planner checks available indexes. If an index matches the query, MongoDB chooses an index scan plan instead of scanning the whole collection. The query executes using the chosen index. The explain output then shows detailed execution stats including whether an index was used. Variables like 'Index Used' track the index state through each step. Key moments clarify why sometimes MongoDB does not use an index and how to read the explain output to confirm index usage. The quiz tests understanding of when and how MongoDB picks and uses indexes during query execution.