For what exact range of values of variable x does the following code segment print 'C'?
```
if (x <= 200)
if (x < 100)
if (x <= 0)
cout << 'A';
else
else
cout << 'B';
else
cout << 'C';
cout << 'D';
```
a. 0 < x < 100
b. x <= 0
c. 100 <= x <= 200
d. x > 200
e. 100 < x <= 200
c. 100 <= x <= 200
Computer Science & Information Technology
You might also like to view...
A ________ is a graphical representation of data
A) range B) cell C) chart D) worksheet
Computer Science & Information Technology
Which of the following is NOT listed as a heading in the Paste Options gallery?
A) Values B) Paste Graphics C) Other Paste Options D) Paste
Computer Science & Information Technology