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

You might also like to view...

You should use the same abbreviation throughout a document.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Telnet runs on TCP __________.

A. port 21 B. port 22 C. port 23 D. port 25

Computer Science & Information Technology