PowerShell - String Operations
What will be the output of this PowerShell code?
$name = "Alice" $text = @" Hello, $name! Welcome to PowerShell. "@ Write-Output $text
