Computing - Data Flashcards

1
Q

What is a bit?

A

One binary digit (1 or 0)

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

What is the difference between a nibble and a byte?

A

A nibble is 4 bits

A byte is 8 bits

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

What is a kilobyte in bytes?

A

1024 bytes

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

How do you convert decimal into binary?

A

Divide the number by 2 and the remainder is the furthest digit to the right
Divide that number by 2 and the remainder is the next number and so on

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

Convert the decimal 67 to binary

A
67 / 2 = 33 r 1
33 / 2 = 16 r 1
16 / 2 = 8 r 0
8 / 2 = 4 r 0
4 / 2 = 2 r 0
2 / 2 = 1 r 0
1 / 2 = 0 r 1

67 = 1000011

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

How do you convert binary to decimal?

A

Make a table with the multiples of 2 going from right to left
Put the binary number in the table with one digit in each column
Add together the multiples of 2 that have a 1 under them

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

Convert 11010 from binary to decimal

A
16 | 1
8 | 1
4 | 0
2 | 1
1 | 0
16 + 8 + 2 = 26

11010 = 26

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

How do you add binary numbers?

A

Add like a decimal but if the result is 2, carry 1 to the next column
If the result is 3 put a 1 below AND carry 1 to the next column

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

Add the binary numbers 1111 and 1100

A
1111 + 1100
1 + 0 = 1
1 + 0 = 1
1 + 1 = 0 (carry 1)
1 + 1 (+ 1) = 1 (carry 1)
(1) = 1
1111 + 1100 = 11011
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Why is getting 11011 when adding 1111 and 1100 a problem?

A

There are 5 digits in the answer and 4 digits in each of the binary numbers to be added
This is an overflow error

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

What is hexadecimal?

A

Base 16 number system

Each column is worth 16 times the one to its right

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

What are the digits in hexadecimal?

A

0 to 9 and then A to F

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

How do you convert hex to binary?

A

Change each digit to decimal
Calculate the 4 binary digits that make up each decimal number
Put the binary digit groups together

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

Convert DB (hex) to binary

A
D = 13
B = 11
13 / 2 = 6 r 1
6 / 2 = 3 r 0
3 / 2 = 1 r 1
1 / 2 = 0 r 1
13 = 1101
11 / 2 = 5 r 1
5 / 2 = 2 r 1
2 / 2 = 1 r 0
1 / 2 = 0 r 1
11 = 1011

DB = 11011011

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

Describe the ASCII character set

A

Uses 7 bits (binary digits) to store each character

This allows there to be 127 different characters

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

What is unicode?

A

A character set that has 107000 characters covering 90 languages

17
Q

What is a bitmapped image?

A

An image where each pixel is represented by a bit

18
Q

What is resolution?

A

The amount of pixels in a given area

It decides on the quality of the image

19
Q

What happens to a file when the resolution is increased?

A

The file size is increased

20
Q

What is colour depth?

A

The number of bits per pixel

The more bits per pixel, the better quality of the colour because more colours can be encoded

21
Q

What is metadata?

A

Data about data

22
Q

What are vector graphics?

A

Pictures that can be stored as formulae

They can enlarged to any size because the pixels change size and move in comparison to each other

23
Q

What type of energy form is sound in terms of computing?

A

Analogue

24
Q

What is sampling?

A

When a computer creates a sound wave which has only horizontal or vertical lines which is very close to the original curved sound wave

25
Q

What is bit rate?

A

The number of bits sampled per second

A higher bit rate gives a sampled sound wave which is closer to the true sound wave

26
Q

What is compression?

A

Changing a sound file so that the parts a human can’t hear are removed
This reduces the file size

27
Q

What is the instruction set of a CPU?

A

Changing data
Moving data
Controlling program flow

28
Q

What are the parts of an instruction and what do they do?

A

Operator is the process (add, subtract etc.)

Operand is the number or a memory address to where some data is stored

29
Q

With the instruction 10011101, what are the operator and operand?

A

10011101
Operator is 1001
Operand is 1101