Digital Data Flashcards

(30 cards)

1
Q

Describe how a number is converted to a binary pattern for storage in compute

A

Computers Memory can be ON or OF

On is indicated by 1 and off is indicated by 0

Data is sorted character by character with each character being represented by a code, which will consist of 1’s and 0’s and each code is sent to the CPU

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

Define a Bit

A

Smallest unit of storage on a computer

it is a single digit in a binary number(0 or 1)

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

Define a Byte

A

a group of 8 bits

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

Define a nibble

A

A nibble is half a byte, consisting of 4 bits

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

How many bytes in a kilobyte

A

1024

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

How many kilobytes in Megabytes

A

1024

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

How many Megabytes in a gigabytes

A

1024

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

how many gigabytes in a terabyte

A

1024

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

What are the two types of character representation

A

ASCII(7- bit and 8-bit)

Unicode

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

Expand ASCII

A

American Standard Code for Information Interchange

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

Explain ASCII(7 bit)

A

Uses 7 bits to represent each character,only 128 characters could be represented in the character set

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

Explain ASCII(8 bit)

A

Uses 8 bits to represent each character, a further 128 characters can be represented in the character set, totalling 256 characters

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

Explain Uni Code

A

Unicode typically uses 16 bits to represent a character and so can represent up to 65000 character

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

Explain the meaning of Overflow

A

Overflow happens when computerized calculations produce an answer that it too big to represented, you have to remove the overflow to get the right answer

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

Define a Variable

A

A memory location given a name used to hold data which can change value

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

What is hexadecimal?

A

Numbering system which uses base 16. Expressed by digits 0-9 and letter A-F giving 16 possibilities

17
Q

What is 0+0 in binary?

18
Q

What is 1+0 in binary?

19
Q

What is 1+1 in binary?

20
Q

What is 1+1+1 in binary?

21
Q

What is 1+1+1 in binary if it is in the last column?

22
Q

What is an overflow?

A

An extra bit which gets discarded so the answer is correct

23
Q

What does it mean in sign magnitude if the first number is 0 an if the first number is 1?

A

0 is positive
1 is negative

00001100 = positive
10001100 = negative

24
Q

What happens in 1’s complement?

A

Every number is flipped
1 –> 0
0 –> 1

25
What happens when the numbers in 1's complement are flipped?
The number is the negative of the normal binary 00001100 = 12 11110011 = -12
26
What happens in 2's complement?
Turn the normal binary to 1's complement and then add 1, this gives you the 2's complement value. It should be the negative of the normal binary value.
27
What is the NOT operator?
It only has 1 input if x = 0 not X = 1
28
What is an AND operator?
Can have any number of inputs. All must be true for the AND to be true X Y X AND Y 0 0 0 0 1 0 1 0 0 1 1 1
29
What is the OR operator?
Can have any number of inputs. X Y X OR Y 0 0 0 1 0 1 0 1 1 1 1 1
30
What is the XOR operator?
It can have any number of inputs. It is only true when only 1 of the input values is true. X Y X OR Y 0 0 0 1 0 1 0 1 1 1 1 0