Login and Register ×
Check your Email for the OTP
Operators in java Bitwise Operators
⚠ Report ✓ Question Verified Copy Link
Explanation:
The right shift operator (>>) in Java shifts the bits of the left operand to the right by the number of positions specified by the right operand. In this case, p >> 2 is equivalent to 00011000 >> 2, resulting in 00000011, which is 6 in decimal.
Related Topic:
Share Above MCQ
Learn More MCQ Questions from Operators in java Bitwise Operators