Computer Science - Object Oriented Programming Using C++ - Discussion

Discussion Forum : Object Oriented Programming Using C++ - Section 11 (Q.No. 10)
10.
The exclusive OR operator gives the result 1 when
both the bits are 0
one bit is 0 and the other is 1
both the bits are 1
no hard and fast rule
None of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
1 comments Page 1 of 1.

Ayesha... said:   5 years ago
Exclusive OR operator gives:

A B Output
0 0 0
0 1 1
1 0 1
1 1 0

Post your comments here:

Your comments will be displayed after verification.