Number Systems And Binary Flashcards

(40 cards)

1
Q

What are the two binary digits

A

1 & 0

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

Represent 134 in Binary

A

10000110

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

What is the largest binary number held in 8 bits?

A

255

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

What does MSB stand for?

A

Most Significant Bit

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

What does LSB stand for?

A

Least Significant Bit

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

Represent 136.75 in Binary form

A

10001000.1100

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

How are negative numbers stored?

A

Using two’s compliment

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

Explain how to convert negative numbers to binary

A

1) Convert positive number to binary
2) Starting from right hand side copy all bits up-to and including first 1
3)Flip all other bits

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

How to do binary subtraction with negative numbers

A

1)Convert negative number to binary
2) Using two’s compliment represent the negative number in binary
3) Add to the positive number

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

Perform Binary subtraction on 8-6

A

100000010
(Overflow occurs so 1 at beginning doesn’t count)

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

List the rules for addition in binary

A

0+0=0
0+1=1
1+0=1
1+1=0 carry the one
1+1+1=1 carry the one

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

Using binary addition add 00011+0001

A

00100

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

Name the steps for binary multiplication:

A

1)Copy Both numbers to binary and approach like long multiplication
2) Copy top bit line whenever you see a 1 in bottom bit line.
3) Whenever you have to copy out a line again shift one to left.
4) Then add together

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

Multiply 8 by 3 using binary multiplication.

A

8x3=11000

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

Explain the repeated division by two method

A

An easy method of converting decimal to binary by writing down decimal number and continuously dividing by 2 to give a result and remainder of either 1 or 0. Until the final result is equal to 0. MSB from bottom and LSB on top.

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

Convert the number 89 to binary using divide by 2 method

A

1011001

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

What base system is Hexadecimal?

18
Q

What are benefits of hex?

A

-Simplifies big numbers
-Easier to remember and understand
-More compact when displayed
-Less likely of an error when typing data

19
Q

Convert 10010010 to hex

20
Q

Convert Hex 3CF to binary

21
Q

Natural Numbers

A

All positive whole numbers including 0

22
Q

Integer Numbers

A

All whole numbers both positive and negative

23
Q

Rational Numbers

A

Set of numbers that can be written as fractions

24
Q

Irrational

A

A number that can’t be written as a fraction eg surds

25
Real Numbers
Set of all possible real world quantities (any number)
26
Ordinal Numbers
Used to tell objects position
27
What is kibi as a value?
2^10 or 1024
28
What is Mebi as a value?
2^20 or 1048576
29
What is Gibi as a value?
2^30 or 1073741824
30
What is the value of Tebi?
2^40 or 1099511627776
31
What is the value of kilo, mega,giga and tera
10^3,10^6,10^9,10^12
32
What is a floating point number?
Numbers that contain floating decimal point
33
How do floating point numbers work?
Using a : Significant-contains numbers digits Exponent-says whether decimal point is placed relative to beginning of significand.
34
What are benefits of floating point numbers?
-It can represent numbers at wildly different magnitudes -Provides same relative accuracy at all magnitudes -Allows calculations across magnitudes
35
36
Using mantissa and exponent convert 23.25 using 8 bit mantissa and 5 bit exponent.
0.1011101 00101
37
Convert -7.25 using 8 bit mantissa and 5 bit exponent
1.000110 00011
38
What are limitations of floating point numbers?
Overflow- A number that is too large to store in available number of bits or storage space. Underflow- A result that is so close to 0.
39
How do you calculate Absolute error?
Absolute error=Expected value-Value you got
40
What is relative error?
Relative error= Absolute error/Actual Value