PowerShell - Control Flow
You want to write a PowerShell script that prints:
- 'Low' if the value is less than 50
- 'Medium' if the value is between 50 and 100 inclusive
- 'High' if the value is greater than 100
Which
- 'Low' if the value is less than 50
- 'Medium' if the value is between 50 and 100 inclusive
- 'High' if the value is greater than 100
Which
if-elseif-else structure correctly implements this?