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:

Verified
Correct Answer:
Verified
Q13: Which of the following statements corresponds to
Q14: <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB10710/.jpg" alt=" -The flowchart in
Q15: A _ performs one set of steps
Q16: A selection structure depends on a(n) _,
Q17: The word "if" is the foundation of
Q19: <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB10710/.jpg" alt=" -The following flowchart
Q20: A Case structure is limited in most
Q21: The code for the following is _.<br>"If
Q22: A selection structure allows you to teach
Q23: A(n) _ structure starts with the pseudocode