Multiple choice What is the command to get and format processes by name? Get-process Set-process | format-list name Get-process | format-list name Get-process format-list name Reveal answer Fill a bubble to check yourself C Correct answer Explanation In PowerShell, the pipe operator (|) is used to pass the output of one command to another. 'Get-process | format-list name' correctly retrieves process information and formats it to show only the names.