In C++, the condition ( 4 > y > 1 ):
a. Evaluates correctly and could be replaced by ( 4 > y && y > 1 ).
b. Does not evaluate correctly and should be replaced by ( 4 > y && y > 1 ).
c. Evaluates correctly and could not be replaced by ( 4 > y && y > 1 ).
d. Does not evaluate correctly and should not be replaced by ( 4 > y && y > 1 ).
b. Does not evaluate correctly and should be replaced by ( 4 > y && y > 1 ).
You might also like to view...
______ relates to the capacity of the network links connecting a server to the wider Internet.
A. Application resource B. Network bandwidth C. System payload D. Directed broadcast
Which of the following expressions determines whether the char variable, chrA, is not equal to the letter 'A'?
a. chrA == 'A' b. chrA != 'A' c. chrA || 'A' d. chrA.notEquals(A)