Difficulty: Easy
Correct Answer: 156
Explanation:
Introduction / Context:
This classic tally problem counts the total number of bell strikes over a day when a clock strikes n times at n o'clock.
Given Data / Assumptions:
Concept / Approach:
Sum of the first 12 natural numbers, then double it for 24 hours.
Step-by-Step Solution:
Sum S = 1+2+...+12 = (12*13)/2 = 78.In 24 hours: 2*S = 156.
Verification / Alternative check:
List small segments (e.g., 1–3 o'clock) to see the pattern, then scale.
Why Other Options Are Wrong:
78 is only half day; 136 and 196 do not match doubling the 12-hour sum.
Common Pitfalls:
Forgetting to double; mis-summing 1–12.
Final Answer:
156 strikes
Discussion & Comments