Question: There are several bitwise operators to help manipulate bits: [5 points, 1 points each question] &- Operates on the corresponding bits of two strings of

There are several bitwise operators to help manipulate bits: [5 points, 1 points each question] &- Operates on the corresponding bits of two strings of bits. The result is a 1 if both bits were 1, 0 if not. - Operates on the corresponding bits of two strings of bits. The result is a 1 if either bit was 1, 0 if not. ^- Operates on the corresponding bits of two strings of bits. The result is a 1 if only one bit was 1, 0 if not. >>(number) - Operates on one string of bits. Shifts all bits to the right equivalent to the number provided. >| 4 a) 0x84658210 = stringl maski b) 0x65821400 = string] > mask2 e) Oxc10a0000 = ((mask2 stringl )
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
