What value will be assigned to decCommission after the following code executes?
``` Dim decMonthlySales, decCommRate, decCommission as Decimal
decMonthlySales = 6500.00
Select Case decMonthlySales
Case Is < 1000
decCommRate = 0.05
Case 1000 to 9999.99
decCommRate = 0.10
Case Is >= 10000
decCommRate = 0.15
End Select
decCommission = decCommRate * decMonthlySales
```
a. 0.00
b. 325.00
c. 650.00
d. 925.00
c. 650.00
Computer Science & Information Technology
You might also like to view...
When a field does not contain a value, either because that value is unknown or inapplicable, it is called a(n) ____ value.
A. void B. empty C. null D. redundant
Computer Science & Information Technology
You use blogware to publish blogs with time-stamped articles called microblogs.
Answer the following statement true (T) or false (F)
Computer Science & Information Technology