Difficulty: Medium
Correct Answer: 74.7
Explanation:
Introduction / Context:
The task is to list primes in the interval and compute their arithmetic mean. This checks prime identification and mean calculation skills.
Given Data / Assumptions:
Concept / Approach:
Enumerate primes, sum them, divide by count.
Step-by-Step Solution:
Verification / Alternative check:
Cross check primality quickly: none of the numbers are divisible by 2, 3, 5, 7 except as expected for composites; list is correct.
Why Other Options Are Wrong:
Common Pitfalls:
Missing a prime like 83 or including a composite such as 77 or 87 by mistake.
Final Answer:
Discussion & Comments