This visual execution compares Serial and Ethernet communication. It starts with opening connections: Serial opens a physical port, Ethernet establishes a network session. Serial sends and receives data one byte at a time, shown in steps 2 and 3, while Ethernet sends and receives full packets, shown in steps 6 and 7. Both close their connections at the end. Variables track port and connection status and data sent/received. Key points clarify why Serial is byte-based and Ethernet packet-based, and why connection handling differs. Quizzes test understanding of data sent, connection closing, and how changing Ethernet to byte-wise sending would affect steps.