Difficulty: Medium
Correct Answer: Thursday
Explanation:
Introduction / Context:
Calendar questions often provide one “anchor” date and ask you to deduce the day on another date. The skill is to convert dates to an offset in days and then take that offset modulo 7 to map back to a weekday.
Given Data / Assumptions:
Concept / Approach:
When moving from the anchor to another date, count the exact number of days between the dates, then shift the weekday by (difference mod 7). A negative shift just means “go backward.”
Step-by-Step Solution:
Verification / Alternative check:
Working forward: 3 Nov 1994 → add 137 days → Monday implies the start was Monday − 4 = Thursday. Same result.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Thursday
Discussion & Comments