This example shows why string functions matter. We start with a string variable $str holding "Hello World". Then we use the strlen function to find how many characters are in $str. The result, 11, is stored in $length. Finally, we print $length to show the string length. Using strlen avoids counting characters manually, which can be slow and error-prone. The execution table traces each step: assigning the string, calling strlen, printing the result, and ending. The variable tracker shows how $str and $length change. Key moments explain why we use functions and what happens if we print variables too early. The quiz checks understanding of variable values and output timing. This teaches how string functions help us handle text in programs simply and correctly.