What will be the result if the code below is executed when the variable testRawScore is 75?
if (testRawScore >= 90) {
gradeEqual = 'A';
} else if (testRawScore >= 80) {
gradeEqual = 'B';
} else if (testRawScore >= 70) {
gradeEqual = 'C';
} else if (testRawScore >= 60) {
gradeEqual = 'D';
}
System.debug(gradeEqual);
Select one of the following: