Difficulty: Easy
Correct Answer: Wednesday
Explanation:
Introduction / Context:
Here we combine a specific calendar date with a composite backward offset: “2 weeks and 4 more days” = 14 + 4 = 18 days earlier. The weekday shift for 18 days is 18 mod 7 = 4 days back. We apply this to the known day for the 23rd.
Given Data / Assumptions:
Concept / Approach:
Moving back 18 days shifts the weekday back by 4 positions. We do not need the exact date number (which would be 5th), only the weekday arithmetic.
Step-by-Step Solution:
Verification / Alternative check:
Count forward instead: From Wednesday, move ahead 18 days. 18 ≡ 4 (mod 7) ⇒ Wednesday + 4 = Sunday—matches the 23rd's day.
Why Other Options Are Wrong:
Common Pitfalls:
Mistaking “2 weeks and 4 days” for 16 days or 14 days, or moving forward instead of backward. Always compute the mod-7 remainder to minimize counting errors.
Final Answer:
Wednesday
Discussion & Comments