Calendar-based questions are a common part of quantitative aptitude and reasoning sections in competitive exams. These questions require knowledge of days, dates, leap years, and cyclic patterns of the calendar. By understanding a few key concepts and formulas, you can solve these problems quickly and accurately.
To find the number of odd days from a given date:
Each month has a fixed day code, which helps determine the day of the week:
Month | Code |
---|---|
January | 0 (1 in leap year) |
February | 3 (4 in leap year) |
March | 3 |
April | 6 |
May | 1 |
June | 4 |
July | 6 |
August | 2 |
September | 5 |
October | 0 |
November | 3 |
December | 5 |
(Last two digits of the year + 4Last two digits + Month Code + Century Code + Date) mod7
The remainder gives the weekday:
Remainder | Day |
---|---|
0 | Sunday |
1 | Monday |
2 | Tuesday |
3 | Wednesday |
4 | Thursday |
5 | Friday |
6 | Saturday |
Example: What day of the week was 15th August 1947?
Solution:
(47+11+2+0+15)mod7=75mod7=5
Answer: Friday
Example: In which year after 2010 will the calendar be the same?
Solution:
A year will have the same calendar if:
We check subsequent years:
Answer: 2021 (Same calendar as 2010)
Example: How many leap years are there from 2000 to 2100?
Solution:
Leap years are divisible by 4, so:
Answer: 25
✅ Use 7-day cycles: Instead of calculating full years, focus on odd days.
✅ Memorize century codes: Quick recall helps in solving year-based problems faster.
✅ Use leap year rules: Century years need divisibility by 400.
✅ Use the cyclic property of days: A calendar repeats every 400 years exactly.
Calendar problems can be solved quickly with a systematic approach using odd days, century codes, and cyclic patterns. With practice, you can master this topic and improve your speed in competitive exams.