Which operator returns true only if both the relational expressions are true * a) And b) Or c) Not
Answers
Answered by
0
Answer:
&& operator
Explanation:
The && operator will return true only if both operands are true . So, if numChars is greater than or equal to LIMIT , the left-hand operand for && is false , and the return value of && can be determined without evaluating the right-hand operand.
Answered by
0
Answer:
The answer is a) And operator
Similar questions