This example shows how System.out.print works in Java. The program prints "Hello " first, then "World!" right after it on the same line. The cursor does not move to a new line after printing. This is different from System.out.println, which moves the cursor to the next line after printing. The execution table traces each print call and shows the output growing step by step. Variables track the output string as it builds. Key moments explain why the cursor stays on the same line and how to print with a new line if needed. The quiz tests understanding of output after each step and the difference between print and println.