Advertisements
Advertisements
Question
Write a program to check if the year entered by the user is a leap year or not.
Solution
The year is a leap year if it is divisible by 4.
Program:
year = int(input("Enter the year: "))
if(year % 4 == 0):
print("The year",year," is a leap year.")
else:
print("The year",year," is not a leap year.")
OUTPUT:
Enter the year: 2020
The year 2020 is a leap year.
APPEARS IN
RELATED QUESTIONS
______ is a negative process.
Explain any three steps of the Selection process.
What is the difference between the else and elif construct of the if statement?
Write a program that takes the name and age of the user as input and displays a message about whether the user is eligible to apply for a driving license or not. (the eligible age is 18 years).
______ is the process of carefully screening the candidates to choose the most suitable persons for the job.
Justify the following:
Selection is a negative process.
Selection means assigning suitable jobs to the selected candidates in the organisation and choosing the most appropriate candidates.
It is the process of carefully screening the candidates to choose the most suitable persons for the job vacancies to be filled in.
What is selection?
How is recruitment different from selection?
Selection is a negative process. Explain.
What is the purpose of Selection?
______ is an elimination process.
Selection is a negative process. Give two reasons for or against.