Examlex

Solved

What Value Will Be Assigned to StrGrade When IntScore Equals

question 39

Multiple Choice

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


Definitions:

Related Questions