Difficulty: Easy
Correct Answer: Thursday
Explanation:
Introduction / Context:
This item stacks relative references: “day after tomorrow,” “tomorrow,” and “day before yesterday.” The reliable way to solve such problems is to set today to T, translate each phrase into an offset, and then simplify algebraically on the 7-day cycle.
Given Data / Assumptions:
Concept / Approach:
Once T is found, compute T − 1 directly. Using offsets prevents double-counting or direction errors.
Step-by-Step Solution:
Verification / Alternative check:
Compute T − 1 explicitly: Friday − 1 = Thursday. Same result.
Why Other Options Are Wrong:
Common Pitfalls:
Applying “day before yesterday” to the wrong anchor (e.g., to T instead of “tomorrow”). Translate the multi-part phrase literally: first move to “tomorrow,” then move two days back.
Final Answer:
Thursday
Discussion & Comments