Bitwise operators in java
Let’s learn bitwise operators in java. Bitwise operators in java Bitwise operator works on integral types bit by bit individually. These integral types comprises of byte, short, int and long types. Here are types of bitwise operators, Bitwise AND (&): bitwise AND operator returns 1 only if both bits are 1, else returns 0. It…
Read More Bitwise operators in java