This visual compares Pig and Hive in Hadoop. Pig uses scripts called Pig Latin to load, filter, and output data step-by-step. Hive uses SQL-like queries to select data. Both tools convert their code into MapReduce jobs that run on Hadoop to process data. Pig is procedural and good for complex flows. Hive is declarative and suits SQL users. The execution table shows each step Pig and Hive take, from loading data to returning results. Variable tracking shows how data changes in Pig relations and Hive queries. Key moments clarify why Pig uses scripts and Hive uses SQL, and that both run on the same engine. The quiz tests understanding of outputs and steps in the process.