Answer :

Answer

The correct answer is option(C) which is "||"

Explanation:

"< or >"" operators are used to check greater or less between two values.

"^" is a bitwise XOR operator, it computes bitwise XOR on every bit of two given numbers .

"&&" is logical AND operator, which returns TRUE when both conditions are TRUE.

"||" is logical OR operator,which returns TRUE when one(or both) condition satisfied.

Other Questions