Multiple choice technology programming languages

Which of the following are bit wise operators in java?

  1. ~

  2. <<

  3. >>

  4. &&

Reveal answer Fill a bubble to check yourself
A,B,C Correct answer
Explanation

Java bitwise operators include ~ (bitwise NOT/complement), << (left shift), >> (right shift), and >>> (unsigned right shift). Option D '&&' is the logical AND operator, not bitwise - it operates on boolean values, not individual bits. Options A, B, C are all valid bitwise operators in Java.