Week 2 Flashcards

1
Q

What is the base-B arithmetic addition rule?

A

If ei >= B, add 1 to ei+1 and set ei = xi + yi - B.

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

What are the binary addition rules?

A

0+0=0, 1+0=1, 1+1=10 (0 with carry 1), 1+1+1=11 (1 with carry 1).

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

How is binary subtraction performed when ei < 0?

A

Borrow 1 from xi+1 and include it in xi.

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

What does the complement (NOT) operation do in binary?

A

Switch 0 to 1 and vice versa.

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

What does the conjunction (AND) operation do?

A

1 if both bits are 1, otherwise 0.

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

What is the disjunction (OR) operation?

A

1 if at least one of the two bits is 1, otherwise 0.

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

What is the exclusive disjunction (XOR) operation?

A

1 if exactly one of the two bits is 1, otherwise 0.

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

How does left bit shifting work?

A

Shifts bits to the left, introducing zeroes, effectively multiplying by 2^n.

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

How does signed right bit shifting work?

A

Shifts bits to the right, repeating the most significant bit.

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

What is bit masking used for?

A

Manipulating specific bits within an integer using AND, OR, XOR, and NOT operations.

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

What is the sum expanded representation for base-10?

A

Calculate as d_n * 10^n + d_(n-1) * 10^(n-1) + … + d_0 * 10^0.

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

What is Horner’s rule used for?

A

A recursive method to convert numbers to base-10.

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

How do you convert base-10 to another base using the repeated division method?

A

Divide repeatedly by the base, and reverse the sequence of remainders.

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

What is the largest power method for base conversion?

A

List powers of the base, find the largest fitting value, and subtract iteratively.

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

What is the process to convert between two arbitrary bases?

A

Convert from the source base to base-10, then from base-10 to the target base.

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

Why do programmers prefer “hex” as a shorthand for binary?

A

Programmers prefer hexadecimal because each hex digit represents exactly 4 binary bits, making it much more compact and easier to read or write large binary values