Computer Science, asked by Anonymous, 6 months ago

what are operators. .and different types of operators in java???​

Answers

Answered by jigyasha1476
9

Operators are the constructs that can manipulate the values of the operands. Consider the expression 2 + 3 = 5, here 2 and 3 are operands and + is called operator. In this article on operators, the goal is to get you the expertise required to get started and work with operators in Java.

Java supports the following types of operators:

Arithmetic Operators

Assignment Operators

Logical Operators

Relational Operators

Unary Operators

Bitwise Operators

Ternary Operators

Shift Operators

Answered by itzdreamer44
4

Shift Operators in Java

There are three different types of shift operators, namely left shift operator signed right operator and unsigned right shift operator

Similar questions