PowerShell - Operators
Which PowerShell command correctly generates even numbers between 4 and 12 using the range operator and filtering?
4..12 creates numbers from 4 to 12 inclusive.Where-Object { $_ % 2 -eq 0 } filters only even numbers.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions