Topic 5.4 - Binary Number System Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

What is the difference between signed and unsigned binary?

A

Unsigned binary can only have positive numbers.
Signed binary can be both positive and negative numbers.

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

Convert 0110 1101 to Denary.

A

109

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

Convert 75 to Binary

A

0100 1011

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

In 8-bit unsigned binary, what is the range of possible values?

A

0 to 255

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

In 8-bit unsigned binary, what is the total amount of possible values?

A

256

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

In 8 bit signed binary, what is the range of possible values

A

-128 to 127

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

What is 10011011 + 01001011

A

155 + 75 = 230

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

what is 00101110 * 0111

A

46 x 7 = 322

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

What is the method used to represnt negative integers

A

Two’s complement

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

What are the three stages of two’s complement

A
  • Write the positive number in binary
  • Flip all the bits
  • Mathematically add 1 to the result
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is the method for performing a binary subtraction, using two’s complement

A
  • Determine the 2’s complement of the smaller number.
  • Add this to the larger number.
  • Omit the carry. Note that there is always a carry in this case.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the formula to find the range of bits if we are given that the number of bits is ‘n’.

A

The range would be 0 to (2^n) - 1

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