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:
Verified
Q33: Which of the following statements corresponds to
Q34: Which of the following is an example
Q35: The code for the following is _.
"If
Q36: The code for the following is _.
"If