PowerShell - Variables and Data Types
What will be the output of this PowerShell code?
$hash = @{ 'a' = 1; 'b' = 2 }
$hash['a'] = 3
$hash['c'] = 4
$hash['b']$hash = @{ 'a' = 1; 'b' = 2 }
$hash['a'] = 3
$hash['c'] = 4
$hash['b']$hash['b'], which was never changed and remains 2.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions