answersLogoWhite

0


Best Answer

arithmatic operator +,-,*,/,%

assigment oprator ==

logical operator &,|,^,&&,,!

bitwise opertor &,|,^

left shift <<

right shift >>

left shift zero fill <<

assignment operator +=,-=,*=,/=

User Avatar

Wiki User

14y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

12y ago

An operator is a symbol used in java to perform various operations. There are many different types of operators. They are:

  1. Arithmetic Operators
  2. Relational Operators
  3. Assignment Operators and
  4. Logical Operators
This answer is:
User Avatar

User Avatar

Wiki User

10y ago

You can look up a list of Java operators online, to get a complete listing. But the different types of operators include: mathematical operators (for calculations), logical operators such as "and" and "or", assignment, bit-shift operators, the "ternary operator" (for a shorthand "if"), and a few others.

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

Arithmetic operator

Logical operator

Conditional operator

Special operator

Relational operator

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

1.artimetical operator

2.logical operator

3.relational operator

4.conditional operator

5.increment & decrement operator

6.comma operator

This answer is:
User Avatar

User Avatar

Wiki User

9y ago

The operation are specific tasks that are represented by Operators .And the objects of the operations are referred to as Operands.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the different types of Operators available in java?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are the eight java operator?

The different types of operators in Java are:Assignment OperatorsRelational OperatorsArithmetic OperatorsLogical Operators


What is operator in java?

An operator is a symbol that does something in Java. for ex: "+" is an arithmetic operator that adds two numbers. "&gt;" is a logical operator that checks if one number is greater than the other. There are many different types of operators in Java like Arithmetic, Logical, Relational and Assignment operators


What is the different types of language?

c, c++, java


What are the different types in java programming language?

core java ,jse.advanced jse,jee and j2me


Why do you use the loops in java?

You use loops in Java when you want a set of actions to be repeated until a particular condition is met or for a certain number of times.The different types of loops in Java are:For LoopsDo-While LoopsWhile Loops


Can java script show comparisons and logic in the site?

Yes. JavaScript is a real computer language, with all the comparison operators and logical structures normally available.


What are operators in the Java programming language?

Take a look at the 1st link below from Sun Microsystems (creator of Java), it will list most of the Java operators with an explanation. The 2nd link provides a more in-depth description of each type of operator.


What are the different types of relationships in java?

Following are the types: 1)Is a 2)Has a 3)Uses a 4)Own zip


Rewrite the BNF of Example 3.4 to add the and -- unary operators of Java?

123


What happens when you perform arithmetic operations mixing different types of variables in java programming?

Java performs an implicit conversion to a unifying type.


Describe different types of java tools?

javac,rmic,eclipse,jbuilder etc..,


What are different types of layout manager available in java awt?

A layout manager is an object that is used to organize components in a container.And it is an interface in the java class libraries that describes how a container and a layout manager communicate. There are 5 main Layouts in java :------ 1. FlowLayout 2. BorderLayout 3. CardLayout 4. GridLayout 5. GridbagLayout