This lesson shows how to name PowerShell functions using the Verb-Noun convention. First, choose a verb that describes the action, like 'Get'. Next, pick a noun that describes the target, like 'User'. Combine them with a hyphen to form the function name, for example, 'Get-User'. This naming style helps make scripts clear and easy to understand. The example defines a function named Get-User that takes a name and returns a string showing the action. The execution table traces defining the function, calling it with a parameter, building the output string, and printing it. Variables like 'Name' change from undefined to the passed value. Key points include why the hyphen is used, the importance of approved verbs, and the clarity gained by following this convention. The quiz checks understanding of the function name, output step, and effect of changing the verb. This method helps beginners write readable and maintainable PowerShell scripts.