Calendar and Clock

Master calendar and clock problems with our comprehensive guide. Learn day calculations, leap years, time formulas, and speed relationships.

Introduction

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.

Why is it important?

  • Frequently asked in competitive exams
  • Tests logical reasoning and calculation skills
  • Improves time management abilities

Calendar Problems

1. Basic Calendar Facts

  • Number of days in a week = 7
  • Number of weeks in a year = 52
  • Number of months in a year = 12
  • Number of days in a year = 365 (366 in leap year)

2. Month-wise Days

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

3. Month Codes

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

4. Century Codes

Century Code
1600s 6
1700s 4
1800s 2
1900s 0
2000s 6
2100s 4

5. Year Code Calculation

For a given year:

  1. Take last two digits of the year
  2. Divide by 4 and take the quotient
  3. Add the last two digits of the year
  4. Take modulo 7 of the sum

Example for 2024:

24 ÷ 4 = 6 (quotient)

6 + 24 = 30

30 % 7 = 2 (year code)

Leap Year

1. Leap Year Rules

  • Divisible by 4 but not by 100
  • Divisible by 400
  • February has 29 days in leap year
  • Total days in leap year = 366

2. Leap Year Formula

A year is a leap year if:

(year % 4 == 0 && year % 100 != 0) || (year % 400 == 0)

Day Calculation

1. Day Index

  • Sunday = 0
  • Monday = 1
  • Tuesday = 2
  • Wednesday = 3
  • Thursday = 4
  • Friday = 5
  • Saturday = 6

2. Day Calculation Formula

For a given date:

Day = (Date + Month Code + Year Code + Century Code) % 7

Clock Problems

1. Clock Facts

  • Hour hand completes 360° in 12 hours
  • Minute hand completes 360° in 60 minutes
  • Second hand completes 360° in 60 seconds
  • Hour hand moves 30° per hour
  • Minute hand moves 6° per minute
  • Second hand moves 6° per second

2. Angle Between Hands

Angle between hour and minute hands:

|(30 × Hour) - (5.5 × Minute)|

Time and Speed

1. Basic Formulas

  • Speed = Distance / Time
  • Time = Distance / Speed
  • Distance = Speed × Time

2. Relative Speed

  • Same direction: |Speed1 - Speed2|
  • Opposite direction: Speed1 + Speed2

Practice Questions

Question 1

Medium

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

Question 2

Hard

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

Question 3

Medium

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)

Question 4

Hard

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)