PowerShell - Operators
Which of the following PowerShell commands correctly creates a range of integers from 2 to 6?
.. operator to create ranges, e.g., start..end.2..6, which is correct. 6..2 is reversed and creates a descending range. 2-6 is invalid syntax. Range(2,6) is not a PowerShell range syntax.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions