Difficulty: Medium
Correct Answer: 80%
Explanation:
Introduction / Context:
This combines price manipulation (markup and discount) with quantity manipulation (extra when buying and short when selling). To handle this cleanly, compute everything per true kilogram. Determine cost per true kg and revenue per true kg, then compare.
Given Data / Assumptions:
Concept / Approach:
Cost per labeled kg delivered (0.90 true kg) = 0.90 * (P / 1.20) = 0.75 P. Revenue per labeled kg = 1.35 P. Profit% = (1.35 P − 0.75 P) / (0.75 P) * 100.
Step-by-Step Solution:
Cost per labeled kg delivered = 0.75 PRevenue per labeled kg = 1.35 PProfit = 1.35 P − 0.75 P = 0.60 PProfit% = 0.60 P / 0.75 P * 100 = 80%
Verification / Alternative check:
Compute per true kg instead; the ratio remains the same and confirms 80%.
Why Other Options Are Wrong:
60% and 70% underestimate the combined effect; 40% is too low; “None” is incorrect.
Common Pitfalls:
Adding or subtracting percentages without translating them into multiplicative factors and aligning per-true-unit calculations.
Final Answer:
80%
Discussion & Comments