PowerShell - File and Directory Operations
What will be the output of this code?
$obj = @{name='Eve'; age=28}
$json = $obj | ConvertTo-Json
$json$obj = @{name='Eve'; age=28}
$json = $obj | ConvertTo-Json
$json$obj is a hashtable with keys name and age.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions