What will be the value of bonus after the following statements are executed?

```
int bonus, sales = 10000;
if (sales < 5000)
bonus = 200;
else if (sales < 7500)
bonus = 500;
else if (sales < 10000)
bonus = 750;
else if (sales < 20000)
bonus = 1000;
else
bonus = 1250;
```


a. 750
b. 1250
c. 500
d. 1000


d. 1000

Computer Science & Information Technology

You might also like to view...

Software as a Service (SaaS) allows businesses to subscribe to Web-delivered business application software by paying a monthly service charge or a per use fee.

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

Computer Science & Information Technology

The name attribute should be different for each option button.

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

Computer Science & Information Technology

A(n) ____________________ printer is a small, lightweight battery-powered printer that allows a mobile user to print from a laptop, smartphone, or other mobile device.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Which of the following are authentication methods that can use AAA authentication? (Select TWO).

A. Kerberos B. PKI C. TKIP/AES D. MS-CHAP E. RADIUS F. TACACS+

Computer Science & Information Technology