Bit Manipulation Flashcards

1
Q

Summing Binary Numbers

A

When summing two binary numbers, you carry a 2 (instead of carrying a 10, like in base 10). Therefore 1+ 1 becomes 10. The 0 digit is left behind while the 1 is added to the next digit.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Subtracting Binary Numbers

A

When subtracting two binary numbers you barrow a 2 (instead of a 10 like in base 10). 0 - 1 becomes 10 - 1 = 1 with the 2 narrowed from the adjacent digit. Subtract the larger from the smaller always. You can always add a negative value afterwards if needed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Multiplying Two Binary Numbers

A

When multiplying two binary numbers, we multiply just like in base 10. Start with the lowest digit and multiply it out. Then second digit, but with a zero place holder. This is done for all digits and the results are summed. Since the values of all digits are either 0 or 1, each digit will either zero out or shift the second number.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

x ^ 0 (XOR)

A

x

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

x ^ 1 (XOR)

A

~x

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

x ^ x

A

0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

x & 0

A

0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

x & 1

A

x

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

x & x

A

x

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

x | 0

A

x

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

x | 1

A

1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

x | x

A

x

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Two’s Complement

A

A positive number is represented as itself while a negative number is represented as the two’s complement of its absolute value (with a 1 in its sign bit, indicating negative). Two’s complement of N-bit number (N does not include the sign bit) is the complement of the number with respect 2N. (The complement of K w.r.t. 2N is 2**N - K). Another way to do this is to invert the bits in the positive representation and then add 1. This is so the zero value is preserved in both the negative and positive representation as all zeros.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Arithmetic Right Shift

A

Essentially divided by 2. Shift values to the right but fill in the new bits with the value of the sign bit. Indicated by a&raquo_space; operator.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Logical Right Shift

A

Essentially shifts bits. Shifts the bits and put a 0 in the most significant bit. Indicated with a&raquo_space;> operator.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Get Bit

A

Shifts 1 over by i bits and ANDs it with a number returning all zeros except at position i. If the number is zero, the number at bit i is zero. Otherwise it is one.

17
Q

Set Bit

A

Shifts 1 over by i bits and ORs it with a number. All numbers will change except the bit at position i which will be 1 no matter what

18
Q

Clear Bit

A

Shift 1 over i times then negate. AND with a number to flip the bit at position i and leave the rest unchanged.

19
Q

Clear all bits from the most significant bit through i (inclusive)

A

Create a mask with a 1 at the ith bit. Subtract 1 from the mask creating a sequence of zeros and i ones. We then AND the mask with the number leaving just the last i bits.

20
Q

Clear all bits from i through 0 (inclusive)

A

Sequence of all ones (-1) and shift left by i+1 bits. This gives a sequence of ones (in the most significant bits) followed by i+1 zeros.

21
Q

Update Bit

A

Clear the bit at position i by using a mask of ones with 0 at bit i. Then shift the value v, left by i bits. OR shifted v with number to replace the ith bit of number with v and leave all other bits unchanged.