Solved

Which of the Following Programs Displays a "Passing Grade" Message

Question 18

Multiple Choice

Which of the following programs displays a "passing grade" message if the score is 60 or above?


A) Display "Enter a test score: "
Input testScore
If testScore > 60 Then
Display "That is a passing grade."
End If
Display "End of program."

B) Display "Enter a test score: " Input testScoreIf
TestScore ==60 Then
Display "That is a passing grade."
End If
Display "End of program."

C) Display "Enter a test score: " Input testScoreIf
TestScore <=60 Then
Display "That is a passing grade."
End If
Display "End of program."

D) Display "Enter a test score: " Input testScoreIf
TestScore >=60 Then
Display "That is a passing grade."
End If
Display "End of program."

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions