Solved

In C++, the Condition (4 > Y > 1)

Question 15

Multiple Choice

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) .

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions