1
GB
What is the output: int a=5,b=3; cout<<(a&b)<<' '<<(a|b)<<' '<<(a^b);
IN
आउटपुट क्या है: int a=5,b=3; अदालत
A
1 7 6
1 7 6
B
3 5 6
3 5 6
C
5 3 1
5 3 1
D
0 7 6
0 7 6
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English)
5=101, 3=011. AND=001=1, OR=111=7, XOR=110=6.
व्याख्या (हिन्दी)
5=101, 3=011. और=001=1, या=111=7, एक्सओआर=110=6।