You are on page 1of 1

Post-Lab Question:

1- What is the result of the operation: 0b 0110 1100 & 0b 1111 1110

2- What is the result of the operation: 0b 1001 0110 | 0b 0110 1000

3- What is the complement of: 0b 0110 1100 | 0b 1111 1110

4- What is the result of the operation: 0x12345678 << 0x7

5- What is the result of the operation: 0b1 && 0b0


0b11 && 0b10
0b111 && 0b000

6- What is the result of the operation: 0b0 || 0b1


0b11 || 0b01
0b001 || 0b00

7- ​What is the result of the operation: 0x87654321 ^ 0x1234

You might also like