Difficulty: Easy
Correct Answer: Sunday
Explanation:
Introduction / Context:When moving from a given calendar date to the same date in the next year, the weekday shift depends on whether the year in between is a leap year (366 days) or a common year (365 days). A 365-day span advances the weekday by 1; a 366-day span advances it by 2, because 365 ≡ 1 (mod 7) and 366 ≡ 2 (mod 7).
Given Data / Assumptions:
Concept / Approach:If the span from one year’s date to the next passes through a leap year, the weekday advances by 2. Otherwise, it advances by 1. Here we cross the body of 2008 (a leap year).
Step-by-Step Solution:
From Jan 3, 2008 to Jan 3, 2009 is 366 days.366 days ≡ 2 (mod 7) ⇒ weekday + 2.Friday + 2 days = Sunday.Verification / Alternative check:Enumerating two steps from Friday: Saturday (1), Sunday (2). Matches the modular reasoning.
Why Other Options Are Wrong:Monday/Tuesday/Saturday correspond to +3/+4/ +1 steps, which do not match a leap-year span of +2.
Common Pitfalls:Forgetting that leap years shift by two days for the same date next year, not one day.
Final Answer:Sunday
Discussion & Comments