What is the output of the expression `5 & 3`?
Question 1
Q1. What is the output of the expression `5 & 3`?
Answer: 1
Explanation: Bitwise AND operation: 5 (101) & 3 (011) = 1 (001). NET computer science MCQs often test this core concept.