PowerShell - Operators
What will be the output of this PowerShell code?
$a = 7
$b = 5
if ($a -gt 5 -and $b -lt 10) { 'True' } else { 'False' }
$a = 7
$b = 5
if ($a -gt 5 -and $b -lt 10) { 'True' } else { 'False' }
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions