This visual execution shows how GROUP and JOIN operations work in Hadoop. First, the map phase emits key-value pairs from input datasets. Then, shuffle and sort group these pairs by key. In the reduce phase, for GROUP operations, values for each key are aggregated, such as summing numbers. For JOIN operations, values from both datasets are combined by key, with nulls used when a key is missing in one dataset. The execution table traces each step, showing inputs, actions, and outputs. Variable tracking shows how data changes from start to finish. Key moments clarify common confusions about repeated keys, reduce logic, and handling missing keys. The visual quiz tests understanding of grouping, reduce outputs, and join behavior with missing keys. This step-by-step trace helps beginners see exactly how Hadoop processes GROUP and JOIN operations.