Computer Science, asked by kesharwania376, 18 days ago

Which operator returns true only if both the relational expressions are true * a) And b) Or c) Not​

Answers

Answered by arindammahajan2009
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 pandeyneelam272
0

Answer:

The answer is a) And operator

Similar questions