Multiple Choice
The JavaScript code for the following algorithm is ____.
If age >= 65 Then
DiscountRate = 0.10
End If
A) if (age >= 65) Then { discountRate == 0.10;} end if
B) if (age >= 65) {discountRate == 0.10} end if
C) if (age >= 65) Then {discountRate = 0.10;}
D) if (age >= 65) {discountRate = 0.10;}
Correct Answer:
Verified
Related Questions