Exploring Java : My Learning Adventure Part - 5
Relational and Logical Operations
Relational Operators : <, <=, >, =>, ==, != they are used for comparing data types. They always return Boolean result.
Logical Operation:
AND (&&): Returns true if both operands are true.
boolean result = (5 > 3) &...
mahia.hashnode.dev6 min read