Difficulty: Easy
Correct Answer: Wednesday
Explanation:
Introduction / Context:Within a month, weekdays advance by the date difference mod 7.
Given Data / Assumptions:3rd = Tuesday; need 25th.
Concept / Approach:25 − 3 = 22; 22 ≡ 1 (mod 7). Move one weekday ahead of Tuesday.
Step-by-Step Solution:
22 mod 7 = 1.Tuesday + 1 = Wednesday.Final Answer:Wednesday
Discussion & Comments