10 - Flashcards_for_Signed_Numbers

1
Q

What is a fixed-length binary number?

A

A binary number with a predetermined number of bits.

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

Why is fixed-length representation important?

A

Memory addresses have fixed-length locations, making efficient use of storage.

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

What are the three fixed-length representations for signed numbers?

A

Signed Magnitude (SM), One’s Complement, and Two’s Complement.

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

Which signed number representation is used in modern computers?

A

Two’s Complement.

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

In Signed Magnitude representation, what does the most significant bit (MSb) indicate?

A

0 for positive numbers, 1 for negative numbers.

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

Describe the steps to convert a base-10 number to signed magnitude binary.

A
  1. Convert absolute value to binary, 2. Store in n-1 bits, 3. Add sign bit.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the main drawback of signed magnitude representation?

A

It has two representations for zero, making arithmetic operations more complex.

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

How is One’s Complement representation different from Signed Magnitude?

A

Negative numbers are represented by bitwise negation of their positive counterpart.

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

Describe the steps to convert a base-10 number to One’s Complement binary.

A
  1. Convert absolute value to binary, 2. Add leading zeros if necessary, 3. If negative, negate each bit.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the main disadvantage of One’s Complement representation?

A

There are two representations for zero, requiring extra logic for arithmetic operations.

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

How is Two’s Complement representation different from One’s Complement?

A

Negative numbers are represented by taking One’s Complement and adding 1.

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

Describe the steps to convert a base-10 number to Two’s Complement binary.

A
  1. Convert absolute value to binary, 2. Add leading zeros, 3. If negative, negate each bit and add 1.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is the range of an 8-bit Two’s Complement number?

A

-128 to +127.

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

Why is Two’s Complement preferred in modern computing?

A

It simplifies arithmetic operations and has only one representation for zero.

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

What is signed overflow in Two’s Complement representation?

A

When the result of an operation exceeds the representable range for a given bit-length.

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

What is the condition for detecting signed overflow in Two’s Complement?

A

Overflow occurs when adding two positive numbers gives a negative result, or two negative numbers give a positive result.

17
Q

What is the purpose of the sign bit in signed number representations?

A

To indicate whether a number is positive or negative.

18
Q

What is the general formula for the range of an n-bit Two’s Complement number?

A

-(2^(n-1)) to (2^(n-1) - 1).

19
Q

How is subtraction handled in Two’s Complement arithmetic?

A

By adding the negation of the second operand using Two’s Complement rules.