Advertisements
Advertisements
प्रश्न
Write a program to check if the year entered by the user is a leap year or not.
उत्तर
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
संबंधित प्रश्न
______ is a negative process.
Explain Application Blank as a step in the selection 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).
Write a program to find the grade of a student when grades are allocated as given in the table below.
Percentage of Marks | Grade |
Above 90% | A |
80% to 90% | B |
70% to 80% | C |
60% to 70% | D |
Below 60% | E |
The percentage of the marks obtained by the student is input into the program.
______ is the process of carefully screening the candidates to choose the most suitable persons for the job.
Selection means assigning suitable jobs to the selected candidates in the organisation and choosing the most appropriate candidates.
What is selection?
How is recruitment different from selection?
Selection is a negative process. Explain.
______ is an elimination process.
Selection is a negative process. Give two reasons for or against.
Selection is a process of elimination. Justify