Operators and Assignments Part-3

Operators in Java Operators can be categorized in the  following types: Bit-wise Operator Bit-wise operators are & (and), | (or), ^ (x or), ! (complement) and ~ (tiled). Studying these operators separately as: & operator: This operator gives the boolean value true only when all the conditions are true. This operator can be used on more than 2 conditions simultaneously. For …

Operators and Assignments Part-3 Read More »