Java Programming: by Mr. Ssemujju Bernard 0781396066
Java Programming: by Mr. Ssemujju Bernard 0781396066
lecture 2
Java Keywords must be in your information because you can not use them as a
variable name.
Java Reserved Keywords List
You can’t use keyword as identifier in your Java programs, its reserved words in Java
library and used to perform an internal operation.
Operator Description
+ Addition
– Subtraction
* Multiplication
/ Division
% Modulus
++ Increment
−− Decrement
Relational Operators
Operator Description
== Is equal to
!= Is not equal to
> Greater than
< Less than
>= Greater than or equal to
<= Less than or equal to
Logical Operators
Operator Description
&& And operator. Performs a logical conjunction on two expressions.
(if both expressions evaluate to True, result is True. If either expression
evaluates to False, result is False)
|| Or operator. Performs a logical disjunction on two expressions.
(if either or both expressions evaluate to True, result is True)
! Not operator. Performs logical negation on an expression.
Bitwise Operators
Operator Description
<< Binary Left Shift Operator
>> Binary Right Shift Operator
>>> Shift right zero fill operator
~ Binary One’s Complement Operator
& Binary AND Operator
^ Binary XOR Operator
| Binary OR Operator
Assignment Operators
Operator Description
= Assign
+= Increments then assigns
-= Decrements then assigns
*= Multiplies, then assigns
/= Divides then assigns
%= Modulus then assigns
<<= Left shift and assigns
>>= Right shift and assigns
&= Bitwise AND assigns
^= Bitwise exclusive OR and assigns
|= Bitwise inclusive OR and assigns
Programs to Show How Assignment Operator Works
Example:
import java.util.*;
import java.lang.*;
import java.io.*;
public class arithop {
public static void main(String[] args) {
int number1 = 6;
int number2 = 8;
int sum = number1 + number2;
int dif = number1 - number2;
int mul = number1 * number2;
int quot = number1 / number2;
int rem = number1 % number2;
System.out.println("number1 is : " + number1);
System.out.println("number2 is: " + number2);
System.out.println("Sum is: " + sum);
System.out.println("Difference is : " + dif);
System.out.println("Multiplied value is : " + mul);
System.out.println("Quotient is : " + quot);
System.out.println("Remainder is : " + rem);
}
}