Which of the following should be used to make the code snippet work for students who get any score between 0 – 100?

```
var grade = 0;
var score = parseInt("What's the score?");
if (score < 70)
grade = "F";
else if ( ??? )
grade = "C";
else if (grade >= 85)
grade = "A";
```
a.
```
grade > 70 && grade < 85
```
b.
```
grade >= 70 && <= 85
```
c.
```
grade >= 70
```
d.
```
grade < 85
```

d.
```
grade < 85
```

Computer Science & Information Technology

You might also like to view...

The ________ bar displays at the bottom of the screen where you type the address of the website you want to visit or a search term

A) tabs B) address C) favorites D) status

Computer Science & Information Technology

If you mistype (or misspell) an identifier in an executable statement, you will get an __________ compiler error.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology