Units and Data Storage Flashcards

(38 cards)

1
Q

What is a bit?

A

1 bit

The smallest unit of data in computing.

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

What is a nibble?

A

4 bits

Commonly used in computing as a half-byte.

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

What is the size of a byte?

A

8 bits

A byte is a fundamental unit of data storage.

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

How many bytes are in a kilobyte?

A

1000 bytes

Equivalent to 8 thousand bits.

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

How many kilobytes are in a megabyte?

A

1000 kilobytes

Equivalent to 1 million bytes or 8 million bits.

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

How many megabytes are in a gigabyte?

A

1000 megabytes

Equivalent to 1 billion bytes or 8 billion bits.

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

What is the size of a terabyte in bytes?

A

1000 gigabytes

Equivalent to 1 trillion bytes or 8 trillion bits.

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

How many terabytes are in a petabyte?

A

1000 terabytes

Equivalent to 1 quadrillion bytes or 8 quadrillion bits.

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

What is the size of an exabyte?

A

1000 petabytes

Equivalent to 1 quintillion bytes or 8 quintillion bits.

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

How many exabytes are in a zettabyte?

A

1000 exabytes

Equivalent to 1 sextillion bytes or 8 sextillion bits.

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

What is the size of a yottabyte?

A

1000 zettabytes

Equivalent to 1 septillion bytes or 8 septillion bits.

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

How many zettabytes are in a brontobyte?

A

1000 yottabytes

Equivalent to 1 octillion bytes or 8 octillion bits.

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

What is a geopbyte?

A

1000 brontobytes

Equivalent to 1 nonillion bytes or 8 nonillion bits.

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

Calculate the size of a text file with 1000 characters at 1 bit per character.

A

125 bytes

Calculation: 1000 bits / 8 = 125 bytes.

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

What is the formula for calculating the size of image files?

A

Colour depth * image height * image width

Colour depth is the number of bits available to store.

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

Calculate the size of an image with dimensions 100 x 300 pixels and a depth of 2.

A

7500 bytes (7.5 KB)

Calculation: 100 * 300 * 2 = 60000 bits, 60000 / 8 = 7500 bytes.

17
Q

What is the formula for calculating the size of sound files?

A

Sample rate * duration * bit depth

Sample rate is the number of samples per second.

18
Q

Calculate the size of a sound file with a bit depth of 2, taking 10 samples per second for 30 seconds.

A

75 bytes

Calculation: 30 * 10 * 2 = 600 bits, 600 / 8 = 75 bytes.

19
Q

What is binary?

A

A number system made up of 0 and 1

It is a base two number system used in computing.

20
Q

Why is binary used in computers?

A

Because a CPU is made up of millions of transistors that can be in one of two states (on/off)

This allows for the representation of data.

21
Q

What is binary addition for 1 + 1?

A

0 carry 1

This represents an overflow in binary addition.

22
Q

What is an overflow error in binary?

A

An extra carry/bit when the result exceeds 8 bits

The result exceeds 255 (11111111 in binary).

23
Q

How do you multiply in binary using shift?

A

Shift all numbers to the left

Each place moved represents a multiplier of 2.

24
Q

How do you divide in binary using shift?

A

Shift all numbers to the right

Each place moved represents a division by 2.

25
What happens to the far left digit when multiplying in binary?
It is dropped ## Footnote The far right digit is replaced by a 0.
26
What happens to the far right digit when dividing in binary?
It is dropped ## Footnote The far left digit is replaced by a 0.
27
What are the types of character sets?
ASCII and Unicode ## Footnote ASCII = American Standard Code for Information Interchange
28
What is a character set?
the number of possible characters that can be represented in a computer system
29
How does ASCII work and what is it useful for? How is each character stored?
allows the computer to understand the characters that have been typed by a human Each character is given a unique binary code and that is how the computer can represent the correct character Each character is stored in 8-bit
30
How much space does ASCII take up and how many characters are there?
1 byte for the whole english language 255 possible characters
31
Why was Unicode developed?
to account for every language in the world. An example of this would allow a user from any country to select their language when setting up an operating system. The Unicode character set would account for every language
32
How much space does Unicode take up and how many characters are there?
It uses 2 bytes(16 bits) that gives us 2^16 possible characters(65,536)
33
What's metadata?
data about the data
34
What metadata is looked for when a multimedia file opens?
The format of the file Height Width File size Date Geo location Author Colour depth of the file
35
What 2 ways do you refer to an image?
colour depth/ bit depth resolution
36
What is colour depth/ bit depth of a file?
the number of bits per pixel The higher your colour depth, the higher your image quality but the file size is bigger
37
What is resolution of a file?
the number of pixels in the same sized area The higher the resolution, the higher the image quality is but bigger the file size
38