Advertisements
Advertisements
प्रश्न
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.
उत्तर
Program:
#Program to print the grade of the student
n = float(input('Enter the percentage of the student: '))
if(n > 90):
print("Grade A")
elif(n > 80):
print("Grade B")
elif(n > 70):
print("Grade C")
elif(n >= 60):
print("Grade D")
else:
print("Grade E")
OUTPUT:
Enter the percentage of the number: 60
Grade D
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 check if the year entered by the user is a leap year or not.
______ 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.
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.