Difficulty: Medium
Correct Answer: 285
Explanation:
Problem Restatement
Find the overall daily average visitors in a 30-day month starting on a Sunday, given different averages for Sundays and other days.
Given data
Concept / Approach
A 30-day month starting on Sunday has exactly 5 Sundays (days 1, 8, 15, 22, 29). The remaining 25 days are non-Sundays. Compute the total visitors using these counts, then divide by 30.
Step-by-step calculation
Number of Sundays = 5; Number of other days = 30 − 5 = 25Total visitors = 5 × 510 + 25 × 240= 2550 + 6000 = 8550Average per day = 8550 ÷ 30 = 285
Common pitfalls
Final Answer
Average visitors per day for the month = 285.
Discussion & Comments