PowerShell - Variables and Data Types
What will be the output of this PowerShell code?
$city = "Boston" $temperature = 75 Write-Output "The temperature in $city is $temperature degrees"
