What value will be assigned to strGrade when intScore equals 90?
```If intScore > 60 Then
strGrade = “D”
End If
If intScore > 70 Then
strGrade = “C”
End If
If intScore > 80 Then
strGrade = “B”
End If
If intScore > 90 Then
strGrade = “A”
End If
```
a. A
b. B
c. C
d. D
b. B
Computer Science & Information Technology
You might also like to view...
What ActivityOptionsCompat method is used for creating scene transitions?
a. doSceneTransitionAnimation() b. makeSceneTransitionAnimation() c. makeTransitionAnimation() d. doSceneTransition()
Computer Science & Information Technology
What are the potential problems related to using the default factory passwords?
What will be an ideal response?
Computer Science & Information Technology