

InterviewSolution
Saved Bookmarks
1. |
Which of the following represents the bitwise XOR operator?(a) &(b) ^(c) |(d) ! |
Answer» The correct option is (b) ^ To explain: The ^ operator represent bitwise XOR operation. &: bitwise AND, | : bitwise OR and ! represents bitwise NOT. |
|