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

```
int bonus, sales = 1250;
if (sales > 1000)
bonus = 100;
if (sales > 750)
bonus = 50;
if (sales > 500)
bonus = 25;
else
bonus = 0;
```

a. 100
b. 500
c. 25
d. 0


c. 25

Computer Science & Information Technology

You might also like to view...

The /etc/resolv.conf file is the resolver configuration file. It provides access to DNS for Internet address resolution. The nameserver lines indicate which systems the local system should query to resolve hostnames into IP addresses, and vice versa.

What will be an ideal response?

Computer Science & Information Technology

Since diagram 0 is a(n) _____ version of process 0, it shows considerably more detail than a context diagram.

A. contracted B. exploded C. condensed D. extrapolated

Computer Science & Information Technology

The ultimate goal of a DoS attack is to ________.

A. make money B. frustrate users C. cause harm D. practice hacking

Computer Science & Information Technology

In the context of JavaFX animations, what is "interpolation"?

What will be an ideal response?

Computer Science & Information Technology