Binary, Denary and Hexadecimal Flashcards

1
Q

What do computers work in?

A

Binary

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

How do we convert Binary to Denary?

A

Binary has just two units, 0 and 1. The value of each binary place value is calculated by multiplying the previous place value by two. The first eight binary place values are:

128 64 32 16 8 4 2 1

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

What is 64 in Binary?

A

01000000

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

How do we do Denary to Binary?

A

To convert from denary to binary, start by subtracting the biggest place value you can from the denary number, then place a 1 in that place value column.

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

What are the rules for adding in Binary?

A

0 + 0 = 0
1 + 0 = 1
1 + 1 = 11 (binary for denary 3)

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

Binary addition Example –>

A

adding 01 + 10

1 + 0 = 1

0 + 1 = 1

Binary addition: 0 1 plus 1 0 equals 1 1
Result in binary: 11 (which is denary 3)

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

Whats an overflow error?

A

Overflow occurs when the result of a calculation requires more bits (place values) than are in the available range.

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

What is Hexadecimal?

A

Hexadecimal also known as hex, is the third commonly used number system. It has 16 units (0-9) and the letters A, B, C, D, E and F.

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

What number do we go up to before we turn to letters

A

1001 (9)

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

What are Binary Shifts?

A

Binary numbers are multiplied and divided through a process called shifting.

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

Whats the rule for multiplying binary shifts?

A

to multiply by two, all digits shift one place to the left
to multiply by four, all digits shift two places to the left
to multiply by eight, all digits shift three places to the left
and so on

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

Whats the rule for dividing binary shifts?

A

to divide by two, all digits shift one place to the right
to divide by four, all digits shift two places to the right
to divide by eight, all digits shift three places to the right
and so on

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

What does ASCII use?

A

Seven bit, giving a character set of 128

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

What does the ASCII table look like?

A

32 control codes (mainly to do with printing)
32 punctuation codes, symbols, and space
26 upper case letters
26 lower case letters
numeric digits 0-9

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

What is Extended ASCII

A

256 bits but uses letters like spanish and foreign letters

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

What is Unicode?

A

256 characters is far too small to hold every character in other languages, such as Chinese or Arabic. Unicode uses 16 bits, giving a range of over 65,000 characters.