PowerShell - Control Flow
What will be the output of this PowerShell code?
$temperature = 15
if ($temperature -gt 30) { 'Very Hot' } elseif ($temperature -ge 20) { 'Hot' } elseif ($temperature -ge 10) { 'Mild' } else { 'Cold' }
