Difficulty: Easy
Correct Answer: 11
Explanation:
Introduction / Context:
The arithmetic mean of a finite set of numbers is the sum of the numbers divided by how many numbers there are. This is a foundational concept used across aptitude and data analysis questions.
Given Data / Assumptions:
Concept / Approach:
Average = (sum of all values) / (number of values). Maintain correct order of operations and careful addition to avoid arithmetic slips.
Step-by-Step Solution:
Verification / Alternative check:
Cross-check by direct addition in a single pass: 8 + 9 = 17; +12 = 29; +13 = 42; +15 = 57; +9 = 66; 66 / 6 = 11. Same result confirms correctness.
Why Other Options Are Wrong:
Common Pitfalls:
Miscounting the number of terms or making a slip in addition can lead to off-by-one errors in the average.
Final Answer:
11
Discussion & Comments