Operators
Operators in Java can be classified into 6 types: 1. Arithmetic operators 2. Assignment operators 3. Relational operators 4. Logical operators 5. Unary operators 6. Bitwise operators 1. Arithmetic operators: are used to perform operations on variables and data. +: addition -: subtraction *: multiplication /: division %: remainder, modulus, mod 2. Assignment operators: are used in Java to assign values to variables. =; +=; -=; *=; /=; %= 3. Relational operators: are used to check the relationship between two operands. It returns either true or false ==: is equal to !=: not equal to >: greater than <: less than >=: greater than equal to <=: less than equal to 4. Logical operators: are used to check whether an expression is true or false. They are used in decision making. && (Logical AND) || (Logical OR) ! (Logical NOT) 5...