InterviewSolution
Saved Bookmarks
| 1. |
What Is Bitwise Operator ? |
|
Answer» An OPERATOR that manipulates the bits of one or more of its operands individually and in PARALLEL. Examples include the binary logical operators (&, |, ^), the binary SHIFT operators (<< , >>, >>> ) and the UNARY one's complement operator (~). An operator that manipulates the bits of one or more of its operands individually and in parallel. Examples include the binary logical operators (&, |, ^), the binary shift operators (<< , >>, >>> ) and the unary one's complement operator (~). |
|