name some relational operators in JAVA?
Answers
Answered by
1
Answer:
Java has 6 relational operators.
- == is the equality operator. This returns true if both the operands are referring to the same object, otherwise false.
- != is for non-equality operator. ...
- < is less than operator.
- > is greater than operator.
- <= is less than or equal to operator.
- > = is greater than or equal to operator.
Similar questions