PowerShell - String Operations
You want to format a table of product names and prices aligned in columns using
-f. Which command correctly formats the output with product left-aligned in 15 spaces and price right-aligned with 2 decimals in 8 spaces?$product = "Book"
$price = 12.5
?
