Answer:
D
Step-by-step explanation:
Using if in this way will validate one by one, and finding a true value will not validate the rest of "else if"
score = 68
if (score < 50) --> print "F"
else if (score >= 50 OR score < 55) --> print "D"
- 68 > = 50 TRUE .... (The OR operator displays a record if any of the conditions separated by OR is TRUE)
As this condition is true the system will not validate the other conditions