Difficulty: Easy
Correct Answer: 2016
Explanation:
Introduction / Context:
Given several candidate years, we determine which are leap years using the standard Gregorian rules: divisible by 4, except centuries must be divisible by 400.
Given Data / Assumptions:
Concept / Approach:
For non-century years, the test reduces to “divisible by 4”. Check each year’s remainder modulo 4.
Step-by-Step Solution:
Verification / Alternative check:
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
2016
Discussion & Comments