Bitwise Operators

Answer all questions carefully. After submission, you will see a detailed result and answer review.

Question 1
"হাত" শব্দটির ইংরেজি কী?
Question 2
If x is 7 and y is 3, what is the value of x | y using the bitwise OR operator in Java?
Question 3
What is the value of p >> 2 after the expression is executed in Java, where p is 24?
Question 4
What is the result of the expression 9 ^ 5 using the bitwise XOR operator in Java?
Question 5
What is the result of the expression 4 & 6 using the bitwise AND operator in Java?
Question 6
If b is 9 and c is 2, what is the value of b ^= c after the expression is executed in Java?
Question 7
If a is 15 and b is 7, what is the value of a & ~b using the bitwise AND and bitwise NOT operators in Java?
Question 8
If q is 16 and r is 3, what is the result of the expression q >>> r using the unsigned right shift operator in Java?
Question 9
If m is 10 and n is 6, what is the result of the expression m << n using the left shift operator in Java?
Question 10
What is the value of the expression m &= 7 after it is executed in Java, where m is initially 15?