Difficulty: Medium
Correct Answer: Saturday
Explanation:
Introduction / Context:
Across several years, we sum yearly shifts: +1 for each common year and +2 for each leap year encountered. After reaching the target year’s same date, we add the remaining day offset to reach the exact target date.
Given Data / Assumptions:
Concept / Approach:
Compute the net shift to Jan 1, 2010, then step one more day to Jan 2, 2010.
Step-by-Step Solution:
Verification / Alternative check:
Modulo arithmetic: 365 ≡ 1, 366 ≡ 2 (mod 7); accumulated = 5; then +1 day.
Why Other Options Are Wrong:
Thursday/Sunday/Friday reflect partial steps; only Saturday matches full accumulation.
Common Pitfalls:
Forgetting to add the extra one day from Jan 1 to Jan 2 after computing the multi-year shift.
Final Answer:
Saturday
Discussion & Comments