Difficulty: Medium
Correct Answer: 14%
Explanation:
Introduction:
This problem combines bulk purchase cost, additional overhead expenses, marked price, and discount to test total profit percentage computation. Always aggregate all costs into the effective cost price before comparing with total revenue from sales.
Given Data / Assumptions:
Concept / Approach:
Total cost = (unit cost * quantity) + overhead. Selling price per unit after discount = marked price * (1 - discount). Total revenue = that selling price times quantity. Profit percentage = (revenue - cost) / cost * 100.
Step-by-Step Solution:
Total base cost = 150 * 250 = 37500Add expense = 2500 ⇒ Total cost = 37500 + 2500 = 40000SP per unit after 5% discount = 320 * 0.95 = 304Total revenue = 150 * 304 = 45600Profit = 45600 - 40000 = 5600Profit% = 5600 / 40000 * 100 = 14%
Verification / Alternative check:
Average effective cost per unit = 40000 / 150 ≈ 266.67; margin per unit = 304 - 266.67 ≈ 37.33. Percentage = 37.33 / 266.67 * 100 ≈ 14% (minor rounding aligns with exact totals).
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
14%
Discussion & Comments