Monday, August 29, 2016


Arithmetic Operator

The Arithmetic Operators are.... => + => - => * => / => % We will see a program in JAVA on Arithmetic Operators class Arith { Public Static void main(Sring a[]) { int a=10, b=5; System.Out.println("the value of a="+a); System.Out.println("the value of b="+b); System.Out.println("the value of a.b="+(a+b)); } } Lets see about the remaining operators in our next post. Have a tremendous Tuesday......

Sunday, August 21, 2016



Operators :-

The operator is a symbol which is used for specific task. Java supports the following types of operators. => Arithmetic Operators => Relational Operator => Assignment Operator => Conditional Operator => Logical Operator => Bitwise Operator => Boolean Operator => Unary Operator => New Operator => Member Operator => Cast Operator => Instance Operator => Increment and Decrement Operator Lets see briefly about the operators in the next post...... Have a happy day.

Tuesday, August 16, 2016