Write the result of following statements (4) a) 3>0||76) b) 8==4 && 5==5 d) 6
Answers
Answered by
0
Answer:
8=4
Explanation:
8=48=4A bitwise OR is a binary operation that takes two bit patterns of equal length and performs the logical inclusive OR operation on each pair of corresponding bits. The result in each position is 0 if both bits are 0, while otherwise the result is 1. For example: 0101 (decimal 5) OR 0011 (decimal 3) = 0111 (decimal 7)
Similar questions