PowerShell - Variables and Data Types
Identify the error in this PowerShell script:
$number = 10 $number = $number + 5 Write-Output number
$number = 10 $number = $number + 5 Write-Output number
$, so it prints the word literally.Write-Output $number.$ before 'number' in Write-Output -> Option C$ to be recognized [OK]$ before variable names when printing [OK]$ before variable in output15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions