Multiple Choice
The code for the following is ____.
"If the value of numCorrect is equal to 3, set bonusPoints to 10 and display the message Congratulations! You win 10 bonus points."
A) If numCorrect == 3 Then
BonusPoints = 10
Display "Congratulations! You win 10 bonus points."
End If
B) If numCorrect <= 3 Then
BonusPoints == 10
Display "Congratulations! You win 10 bonus points."
End If
C) If numCorrect > 3 Then
BonusPoints == 10
Display "Congratulations! You win 10 bonus points."
End If
D) If numCorrect != 3 Then
BonusPoints == 10
Display "Congratulations! You win 10 bonus points."
End If
Correct Answer:

Verified
Correct Answer:
Verified
Q34: On a flowchart, the End If statement
Q35: JavaScript allows using the keywords else if
Q36: The end command, which is an exception
Q37: For nested selections that test the same
Q38: Nested selections, when written formally, require indentations
Q40: The following symbols are known as _.<br><,
Q41: You should use braces for all selection
Q42: You should put a semicolon after the
Q43: In a JavaScript, the entire Case structure
Q44: When creating a flowchart to represent selection