Difficulty: Easy
Correct Answer: None of these
Explanation:
Introduction / Context:This problem checks understanding of 7-day modular cycles. If we know the weekday some fixed number of days ago, we can deduce today’s weekday and then count forward to the desired day.
Given Data / Assumptions:
Concept / Approach:Compute today’s day first. Since 94 mod 7 = 3, moving forward 94 days shifts the weekday by +3.
Step-by-Step Solution:
1) 94 mod 7 = 3.2) 94 days after Monday → Monday + 3 = Thursday (today).3) From Thursday to Sunday is 3 days (Fri=1, Sat=2, Sun=3).Verification / Alternative check:Count directly on fingers or a 7-step cycle: Thu→Fri(1), Sat(2), Sun(3).
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:None of these (actual gap is 3 days).
Discussion & Comments