Bitwise operators in java
Let’s learn what are the bitwise operators in java? Bitwise operators in java Bitwise operator works on integer data bit by bit individually. These integer data comprises of byte, short, int and long types. Here are types of bitwise operators, Bitwise AND (&) Bitwise inclusive OR (|) Bitwise exclusive OR (^) Bitwise Compliment (~) Bitwise…
Read More Bitwise operators in java