Master calendar and clock problems with our comprehensive guide. Learn day calculations, leap years, time formulas, and speed relationships.
Calendar and clock problems test your ability to work with dates, times, and their relationships. These problems are common in competitive exams and require logical thinking.
| Month | Days | Month | Days |
|---|---|---|---|
| January | 31 | July | 31 |
| February | 28/29 | August | 31 |
| March | 31 | September | 30 |
| April | 30 | October | 31 |
| May | 31 | November | 30 |
| June | 30 | December | 31 |
| Month | Code | Month | Code |
|---|---|---|---|
| January | 0 | July | 6 |
| February | 3 | August | 2 |
| March | 3 | September | 5 |
| April | 6 | October | 0 |
| May | 1 | November | 3 |
| June | 4 | December | 5 |
| Century | Code |
|---|---|
| 1600s | 6 |
| 1700s | 4 |
| 1800s | 2 |
| 1900s | 0 |
| 2000s | 6 |
| 2100s | 4 |
For a given year:
Example for 2024:
24 ÷ 4 = 6 (quotient)
6 + 24 = 30
30 % 7 = 2 (year code)
A year is a leap year if:
(year % 4 == 0 && year % 100 != 0) || (year % 400 == 0)
For a given date:
Day = (Date + Month Code + Year Code + Century Code) % 7
Angle between hour and minute hands:
|(30 × Hour) - (5.5 × Minute)|
What day of the week was January 1, 2024?
Solution:
1. 2024 is a leap year
2. Using the day calculation formula:
Day = (1 + 0 + 24 + 6) % 7 = 3
Answer: Wednesday
At what time between 3 and 4 o'clock will the hands of a clock be at right angles?
Solution:
1. Angle between hands = 90°
2. Using the angle formula:
|(30 × 3) - (5.5 × x)| = 90
x = 32.73 minutes
Answer: 3:32:43
What day of the week was March 15, 2024?
Solution:
1. Date = 15
2. Month Code for March = 3
3. Year Code for 2024 = 2
4. Century Code for 2000s = 6
5. Day = (15 + 3 + 2 + 6) % 7 = 26 % 7 = 5
Answer: Friday (5)
What day of the week was February 29, 2024? (Leap Year)
Solution:
1. Date = 29
2. Month Code for February = 3
3. Year Code for 2024 = 2
4. Century Code for 2000s = 6
5. Day = (29 + 3 + 2 + 6) % 7 = 40 % 7 = 5
Answer: Thursday (4)