Difficulty: Easy
Correct Answer: All I, II and III together
Explanation:
Introduction / Context:
The task is to decide which statements are sufficient to compute the overall average salary of 15 employees, given subgroup averages and subgroup sizes.
Given Data / Assumptions:
Concept / Approach:
The combined average is a weighted mean: (Σ subgroup_total) / 15, where each subgroup_total = (subgroup_avg * subgroup_count). To compute the overall average uniquely, we need all subgroup totals (or an equivalent).
Step-by-Step Solution:
Verification / Alternative check:
Missing any one subgroup leaves an unknown portion of the total, preventing a unique overall average.
Why Other Options Are Wrong:
Common Pitfalls:
Assuming the remaining subgroup can be deduced; it cannot without additional constraints.
Final Answer:
All I, II and III together
Discussion & Comments