In C, the condition 4 > y > 1

a) evaluates correctly
b) does not evaluate correctly and should be replaced by (4 > y && y > 1)
c) does not evaluate correctly and should be replaced by (4 > y & y > 1)
d) does not evaluate correctly and should be replaced by (4 > y || y > 1)

b) does not evaluate correctly and should be replaced by (4 > y && y > 1)

Computer Science & Information Technology

You might also like to view...

__________ is when a positive exponent exceeds the maximum possible exponent value.

A. Significand underflow B. Significand overflow C. Exponent overflow D. Exponent underflow

Computer Science & Information Technology

Describe how the retransmission timeout (RTO) value is determined in TCP.

What will be an ideal response?

Computer Science & Information Technology