PowerShell - Functions
Consider this script:
param([string]$User = "Guest") Write-Output "Welcome, $User!"What will be the output if the script is run without any parameters?
