70 likes | 126 Views
Learn about different types of operators in Java programming, including arithmetic, relational, logical, bitwise, assignment, and miscellaneous operators. Explore how each type is used and their significance in programming.
E N D
Operators In Java Programming
Introduction An operator is a symbol which is used to perform some operation in a program For example + is a operator which is used to perform mathematical addition and string concatination operation
Types of Operators Java provides a rich set of operators they are divided as follows 1. Arithmetic Operators 2. Relational Operators 3. Bitwise Operators 4. Logical Operators 5. Assignment Operators 6. Misc Operators
Arithmetic Operators These operators are used to perform mathematical operations.
Relational Operators These operators are used check relation between the two operands
Logical Operators These operators are used to combine more than one condition
Bitwise Operators These operators are used to perform bit level operations