Sarkari RiseLogin

Calendar Questions for SSC MTS

Free, AI-curated practice for the Calendar section of SSC MTS. We have 15+ verified questions in this bank. Below: 5 sample questions. Sign up free to unlock unlimited practice + AI explanations + per-topic analytics.

▶ Start free — SSC MTS mockAll SSC MTS resourcesAlready a user? Sign in →
📍 Calendar is also tested in:
UP POLICE CONSTABLE (13)
Why this topic matters · 7 min read
Calendar questions appear in 1-2 questions per SSC MTS paper, testing your ability to find what day of the week a given date falls on, count days between dates, and identify leap years. These are quick-scoring if you know the tricks; most aspirants lose marks by doing long calculations. Focus on the Zeller formula shortcut and leap-year rules.

Leap Year Rules

A leap year has 366 days instead of 365. Knowing which years are leap is the foundation. The rule is simple: a year is a leap year if it is divisible by 4, EXCEPT century years (like 1900, 2000) which must be divisible by 400. Think of it as: normal years need only 4; century years need the stricter 400 test.

  • Divisible by 4 → leap year (e.g., 2020, 2024)
  • Century year (ends in 00) → must be divisible by 400 (e.g., 2000 is leap; 1900 is NOT)
  • Leap years have Feb 29; non-leap have Feb 28
  • In a leap year, Jan 1 and Dec 31 are separated by 366 days (52 weeks + 2 days)
  • In a non-leap year, Jan 1 and Dec 31 are separated by 365 days (52 weeks + 1 day)

Odd Days Concept

Odd days are the extra days left after removing complete weeks. If a period has 365 days, that is 52 weeks + 1 day, so 1 odd day. If 366 days, that is 52 weeks + 2 days, so 2 odd days. This is the core trick: instead of counting all days, just count odd days and map them to day names. Odd days cycle: 0=Sunday, 1=Monday, 2=Tuesday, ..., 6=Saturday.

  • Non-leap year = 365 days = 52 weeks + 1 odd day
  • Leap year = 366 days = 52 weeks + 2 odd days
  • Century non-leap year (1900, 1800) = 1 odd day
  • Century leap year (2000) = 2 odd days
  • Odd day 0 = Sunday, 1 = Monday, 2 = Tuesday, ... 6 = Saturday
  • Add odd days modulo 7 to find the day

Finding Day of Week for Any Date

To find what day Jan 15, 2024 is, or what day a historical date was: (1) Count total days from a known reference (like Jan 1 of that year or a known date). (2) Find odd days by dividing by 7 and taking remainder. (3) Map remainder to day name. Alternatively, use the Zeller formula for direct calculation, but odd-days method is faster in exams.

  • Method 1: Count days from Jan 1 of the year, find odd days, add to known day of Jan 1
  • Method 2: Use Zeller formula (more complex, skip unless comfortable)
  • Always work modulo 7 to avoid large numbers
  • If asked about a date in a leap year, remember Feb has 29 days
  • Common reference: Jan 1, 2000 was a Saturday (memorize this)
Key formulas
Odd Days in a Year
Non-leap: 1 odd day; Leap: 2 odd days
When: When calculating days between Jan 1 and Dec 31 of a year
Day Mapping
Remainder 0=Sun, 1=Mon, 2=Tue, 3=Wed, 4=Thu, 5=Fri, 6=Sat
When: After calculating total odd days, map to day name
Worked examples

Q: What day is Jan 1, 2024? A: Jan 1, 2023 was Sunday. 2023 is non-leap (365 days = 1 odd day). So Jan 1, 2024 = Sunday + 1 = Monday.

Q: How many days between Mar 5 and Mar 20 in a non-leap year? A: 20 - 5 = 15 days. 15 mod 7 = 1 odd day. If Mar 5 is Monday, Mar 20 is Tuesday.

Counting Days Between Two Dates

When asked 'how many days between date A and date B', be careful: do you count both endpoints or just one? Usually, the answer is the difference. For example, between Jan 1 and Jan 5 is 4 days (Jan 2, 3, 4, 5) or 5 days (Jan 1, 2, 3, 4, 5) depending on context. In SSC MTS, usually it's the simple difference. Also remember to account for leap years if the period spans Feb 29.

  • Simple difference: Jan 20 to Jan 25 = 5 days
  • Across months: count remaining days in first month + full months + days in last month
  • If period includes Feb 29 (leap year), add 1 extra day
  • Always double-check if the year is leap before finalizing
  • Exam often asks 'how many days' or 'what day'; read carefully
Worked examples

Q: Days from Jan 15 to Mar 15 in 2024 (leap year). A: Jan (31-15=16) + Feb (29) + Mar (15) = 16+29+15 = 60 days.

Q: Days from Jan 15 to Mar 15 in 2023 (non-leap). A: Jan (16) + Feb (28) + Mar (15) = 59 days.

Common Calendar Patterns in SSC MTS

SSC MTS loves certain patterns: (1) 'If Jan 1 is Monday, what is Dec 31?' (2) 'What day was Independence Day 1947?' (3) 'How many Sundays in a given month?' (4) 'If a date is a Thursday, what day is it 100 days later?' These are all solvable with odd days. The exam rarely asks Zeller formula directly; focus on odd days and modular arithmetic.

  • Pattern 1: Jan 1 to Dec 31 in a year = add odd days (1 or 2) to day of Jan 1
  • Pattern 2: Historical dates = use known reference (e.g., Jan 1, 2000 = Saturday) and count years/odd days backward or forward
  • Pattern 3: Sundays in a month = depends on which day the month starts and how many days it has
  • Pattern 4: Day after N days = (current day + N) mod 7
  • Leap year century rule is tested often; don't forget 1900 is NOT leap, 2000 IS leap
⚠ Common mistakes to avoid
  • Forgetting that century years (1900, 1800) are NOT leap years unless divisible by 400. Many aspirants wrongly think 1900 is leap.
  • Confusing 'days between' with 'days including both endpoints'. Always clarify: is Jan 1 to Jan 5 four days or five days? Usually in SSC it's the difference (4).
  • Not reducing modulo 7 early. Aspirants calculate huge day numbers and then mod, wasting time. Always mod 7 as you go.
  • Miscounting days in Feb. In leap years it's 29; in non-leap it's 28. Forgetting this when counting across Feb 29 causes errors.
  • Using Zeller formula without practice. It's complex and error-prone. Stick to odd-days method which is faster and more reliable in a timed exam.
🧠 Memory aids
  • LEAP RULE: Divisible by 4 is leap, EXCEPT century years need 400. Mnemonic: '4 is easy, 400 is strict for centuries.'
  • ODD DAYS CYCLE: 0=Sun, 1=Mon, 2=Tue, 3=Wed, 4=Thu, 5=Fri, 6=Sat. Think of it as a clock: 0 is midnight (Sunday start).
  • YEAR ODDNESS: Non-leap = 1 odd day, Leap = 2 odd days. Remember: leap year has 1 extra day, so 1 extra odd day.
  • REFERENCE DATE: Jan 1, 2000 was Saturday. Use this as your anchor for historical questions. Count odd days from 2000 to your target year.
🎯 SSC MTS exam tips
  • SSC MTS typically has 1-2 calendar questions in the Reasoning section. They are quick-scoring if you know odd days; skip if you don't and come back.
  • Recent papers focus on leap-year rules and finding day of week, not complex Zeller formula. Prioritize odd-days method.
  • Time management: a calendar question should take 1-2 minutes max. If you're stuck after 90 seconds, move on.
  • Watch for trick questions like 'How many Sundays in February 2024?' (leap year, Feb has 29 days). Count carefully.
  • Exam setters love asking about century years (1900, 2000) to catch aspirants off-guard. Double-check the 400 rule.

Sample questions

Q1 · medium · PYQ 2025
A person was born on 3 October 2019. What day of the week will be on his 6th birthday?
  1. Thursday
  2. Wednesday
  3. Friday
  4. Saturday
Q2 · medium · PYQ 2025
In the year 1925, which of the following months had 5 Thursdays?
  1. March
  2. January
  3. February
  4. May
Q3 · hard · AI-verified
If 1st January of a certain year is a Tuesday, then how many Mondays will occur in that year if it is a leap year?
  1. 53 Mondays
  2. 50 Mondays
  3. 51 Mondays
  4. 52 Mondays
Q4 · hard · AI-verified
If a date falls on a Friday in a non-leap year, on which day will the same date fall exactly one week later?
  1. Sunday
  2. Thursday
  3. Saturday
  4. Friday
Q5 · medium · PYQ 2025
If the 1st of a month is Wednesday, then what will the 29th day of that month be?
  1. Tuesday
  2. Thursday
  3. Wednesday
  4. Monday
💡 Want answers + explanations + 10+ more Calendar questions? Sign up free →
⭐ Recommended for SSC MTS aspirants

Full AI 6-Month

all your target exams · 6 months · unlimited mocks + AI
₹799~₹4.4/day
Sign up free, then unlockSee all plans →

More SSC MTS topics

Current Affairs
92+ practice questions
History
87+ practice questions
Fill in the Blanks
84+ practice questions
Coding-Decoding
82+ practice questions
Average
75+ practice questions
Sentence Improvement
69+ practice questions

Free practice, AI explanations, 24 exams — all in one app

Daily 10-Q quiz · AI doubt solver in Hindi + English · adaptive mocks · 49,000+ practice questions (19,000+ verified PYQs).

Sign up freePricingTry Daily 10-Q