Consider the following code that will assign a letter grade…

Consider the following code that will assign a letter grade of ‘A’, ‘B’, ‘C’, ‘D’, or ‘F’ depending on a student’s test score. if (score >= 90)    grade = ‘A’; if (score >= 80)    grade = ‘B’; if (score >= 70)    grade = ‘C’; if (score >= 60)    grade = ‘D’; else    grade = ‘F’;