1 / 7

Operators

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.

wkinder
Télécharger la présentation

Operators

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Operators In Java Programming

  2. 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

  3. 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

  4. Arithmetic Operators These operators are used to perform mathematical operations.

  5. Relational Operators These operators are used check relation between the two operands

  6. Logical Operators These operators are used to combine more than one condition

  7. Bitwise Operators These operators are used to perform bit level operations

More Related