PowerShell - File and Directory Operations
Given the CSV file
What will the following PowerShell command output?
users.csv with content:Name,Age Alice,30 Bob,25
What will the following PowerShell command output?
Import-Csv users.csv | Where-Object { $_.Age -gt 27 } | Select-Object -ExpandProperty Name