1.01 - Number systems Flashcards

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

What is the base of denary numbers?

A

10

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

What is the base of the binary numbers?

A

2

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

How is each digit represented in the binary number system?

A

1s and 0s

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

A group of eight bits is called…

A

… a Byte

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

list

2 (to the power 0) - 2 (to the power 8)

A

1
2
4
8
16
32
64
128
256

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

Base of hexadecimals?

A

base 16

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

How are hexadecimal digits represented?

A

0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F

A=10, B=11, C=12, D=13, E=14, F=15

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

What is a group of four bits?

A

A nibble

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

How many hexa decimal digits can be used represent a nibble?

A

One. This means that two can be used to represent a byte of binary code

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

Example of when hexadecimal representations of bytes occur

A

When an error has occured during the execution of a program. A memory dump is provided which has a hexadecimal representation of the content of some chosen part of the memory.

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

How to convert Denary to binary?

A

Divide the denary number by 2. Remainders are the binary numbers.

Leading zeros are ignored however a binary code must not include blanks

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

How to convert binary to denary?

A

Multiply the binary number with the squares of 2. Add all the answers.

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

How to convert denary to hexadecimal?

A

Divide the denary number by 16. Remainder is the hexadecimals value.

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

How to convert hexadecimal to denary?

A

Multiply the hexadecimal value by the squares of 16. Add all the answers

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