Creating a Test and Debug Plan Quick Check5 of 55 of 5 ItemsQuestionSuppose 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")if avg >= 80 and avg < 90: print("Your Grade is B")if avg >= 70 and avg < 80: print("Your Grade is C")if avg >= 60 and avg < 70: print("Your Grade is D")if avg >= 0 and avg < 70: print("Your Grade is F")if avg < 0 or avg > 100: print("Invalid Input!") When you test the program for the value 65, you get the following output: Enter numeric grade:65Your Grade is DYour Grade is F ** Process exited - Return Code: 0 **Press Enter to exit terminalHow can you locate the error? (1 point)

The error in this program can be located by analyzing the conditions in the if statements.

In this case, the error is that the last if statement is redundant and causing the "Your Grade is F" statement to be printed twice. This can be seen in the output where "Your Grade is D" is followed by "Your Grade is F" twice.

To fix this error, the last if statement can be removed, since the "if avg >= 60 and avg < 70" condition already covers grades from 0 to 59.