Syntax: Conditionals in PowerShell. • ID: #67 Code $n=18 if($n%2 -eq 0){ "even" } else { "odd" } Notes You can copy this snippet and adapt it. For advanced, add real-world inputs, edge cases, and tests. ← Prev Next →