Duplicate Question
The question on this page has been marked as a duplicate question.
Original Question
Suppose you are writing a program to convert numeric grades to letter grades: print("Enter numeric grade: ") avg = int(input())...Question
Suppose you are writing a program to convert numeric grades to letter grades: print("Enter numeric grade: ") avg = int(input()) if avg >= 90 and avg <= 100: print("Your Grade is A") elif avg >= 80 and avg < 90: print("Your Grade is B") elif avg >= 70 and avg < 80: print("Your Grade is C") elif avg >= 60 and avg < 70: print("Your Grade is D") elif avg >= 0 and avg < 60: print("Your Grade is F") else: print("Invalid Input!") You want to test that program is working properly. What is the minimum number of data points that you will need to test to make sure that program is working properly? (1 point) Responses 13 13 6 6 5 5 11
Answers
There are no human answers yet.
There are no AI answers yet. The ability to request AI answers is coming soon!
Submit Your Answer
We prioritize human answers over AI answers.
If you are human, and you can answer this question, please submit your answer.