Java | Relational Operators: Relational operators are using for compare the data. List of Relational Operators: . Less Than: This operator checks if left value is less than right value or not. it is denoted by '<'. Ex: 1 < 2. Greater Than: This operator checks if left value is greater than right value or not. it is denoted by '>'. Ex: 1 > 2. Equal to: This operator is using to check if both values are equal or not. it is denoted by '=='. Ex: 1 == 2. Not Equal to: This operator is usin...