If x = -3 and y = 4, evaluate (x > 0) || (y == 4
Answers
Answered by
0
Answer:
True
Explanation:
(x>0) evaluates false,
and (y==4) evaluates true
Therefore, (x > 0) || (y == 4) evaluates true since one of the expression is true
Similar questions