PowerShell - String Operations
What will be the output of this PowerShell code?
$a = "Hello"
$b = "World"
$c = $a + ", " + $b + "!"
Write-Output $c
$a = "Hello"
$b = "World"
$c = $a + ", " + $b + "!"
Write-Output $c
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions