PowerShell - Control Flow
What will this PowerShell code output?
$num = 7
if ($num -lt 5) {
'Less than 5'
} elseif ($num -eq 7) {
'Equal to 7'
} else {
'Other'
}
