Lecture 1B: Positional Numbering Systems Flashcards
Name the most popular Positional Numbering Systems (PNS).
Decimal, Binary, Octal, Hexadecimal.
What PNS is Base-2?
Binary
What PNS is Base-10?
Decimal
What PNS is Base-16?
Hexadecimal
What PNS is Base-8?
Octal
How do you convert Decimal to Binary?
- Divide decimal by 2.
- Write down the quotient and the remainder.
- Divide quotient by 2.
- Write down the quotient and the remainder.
- Repeat the process (1)-(4) until the quotient becomes zero.
- Write down the binary number from the bottom (MSB) to top (LSB)
What is Decimal 66 in Binary?
100010
How do you convert Decimal to Hexadecimal?
- Divide decimal by 16.
- Write down the quotient and the remainder.
- Divide quotient by 16.
- Write down the quotient and the remainder.
- Repeat the process (1)-(4) until the quotient becomes zero.
- Write down the hexadecimal number from the bottom (MSB) to top (LSB)
What is Decimal 524 in Hexadecimal?
20C
How do you convert Binary to Octal?
- Start from the right to make your groups.
- Add zeros to the left of the last digit if you don’t have enough to make a set of three.
- Write down the decimal representation of every group.
What is Binary 101011 in Octal?
53
How do you convert Binary to Hexadecimal?
- Cut your string of binary numbers into groups of four, starting from the right.
- Add extra zeros to the front of the first number if required.
- Convert one 4-digit group at a time. To convert between binary and hexadecimal, you simply replace each hexadecimal digit with its 4-bit binary equivalent and vice versa.
What is Binary 10001101011 in Hexadecimal?
46B
How do you convert Hexadecimal or Octal to Binary?
• Look up each hex or octal digit to obtain the equivalent group of four binary digits.
What is Hexadecimal 8B.2 in Binary?
10001011.0010
What is Octal 317.2 in Binary?
11001111.01
What are the advantages of Signed Magnitude Representation?
It is easy for people to understand.
What are the disadvantages of Signed Magnitude Representation?
It is hard for computers to process.
It requires complicated computer hardware.
It allows two different representations of zero - positive zero and negative zero.
Which bit in a Signed Magnitude Representation is the sign bit?
Most significant / leftmost bit.
What are two possible sign bits in Signed Magnitude Representation?
1 for positive and 0 for negative.
How do you represent a negative value in One’s Compliment?
Invert all the bits in the binary representation of the number. 1 becomes 0 and 0 becomes 1.
For example:
+3 is 00000011
-3 is 11111100
What are the disadvantages of One’s Complement?
It has two different representations for zero: positive zero and negative zero.
Positive and negative integers need to be processed differently.
How do you represent a negative number in Two’s Compliment
First, convert the number to one’s complement, then add 1 using binary arithmetic.
• You represent positive numbers just like unsigned numbers.
• To represent negative values, start with the corresponding positive number, invert all bits then add 1.
For example, using two 8 bit two's complement representation: \+3 is 00000011 (One's Compliment) -3 is 11111100 (One's Compliment) then +1 -3 is 11111101 (Two's Compliment)
How do you represent a negative number in Two’s Compliment
First, convert the number to one’s complement, then add 1 using binary arithmetic.
• You represent positive numbers just like unsigned numbers.
• To represent negative values, start with the corresponding positive number, invert all bits then add 1.
For example, using two 8 bit two's complement representation: \+3 is 00000011 (One's Compliment) -3 is 11111100 (One's Compliment) then +1 -3 is 11111101 (Two's Compliment)
How can you check if two’s complement is correct?
By adding the two numbers. The result has to be zero.
Note that the result of the addition must be of the n bits, where n is the number of bits in the inputs.
How can you multiply a signed integer?
- Simply use an arithmetic shift operation.
- A left arithmetic shift inserts a zero in for the rightmost bit and shifts everything else left one bit; in effect, it multiplies it by 2.
How can you divide a signed integer?
- Simply use an arithmetic shift operation.
* A right arithmetic shift shifts everything one bit to the right, but copies the sign bit; it divides by 2.
How many bits are used in single and double floating-point representations?
Single: 32-bit
Double: 64-bit