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