When you run a query in MongoDB, it first checks if there is an index on the fields you are searching. If an index exists, MongoDB uses it to quickly find matching documents by scanning only the index entries instead of the entire collection. This makes the query much faster. If no index exists, MongoDB must scan every document in the collection to find matches, which is slower. The execution table shows steps where MongoDB decides to use the index or not, how many documents it scans, and the speed of the result. The variable tracker shows how the index usage affects documents scanned and speed. Understanding this helps you see why indexes are critical for performance.