Advertisements
Advertisements
प्रश्न
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).
उत्तर
Program:
#Program to check the eligibility for driving license
name = input("What is your name? ")
age = int(input("What is your age? "))
#Checking the age and displaying the message accordingly
if age >= 18:
print("You are eligible to apply for the driving license.")
else:
print("You are not eligible to apply for the driving license.")
OUTPUT:
What is your name? John
What is your age? 23
You are eligible to apply for the driving license.
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 to check if the year entered by the user is a leap year or not.
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.
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?
______ is an elimination process.
Selection is a negative process. Give two reasons for or against.
Selection is a process of elimination. Justify