Write an If...Then...Else statement that assigns the number 2000 to theintBonusvariable when thedecSalesvariable contains a number that is greater than or equal to $50,000; otherwise, assign the number 500.
What will be an ideal response?
If decSales >= 50000 Then
intBonus = 2000
Else
intBonus = 500
End If
Computer Science & Information Technology