1.2: MEMORY AND STORAGE 2.0 Flashcards

1
Q

What is a major disadvantage of SSDs? Give an example.

A
  • expensive, tends to be smaller in capacity than other types.
  • For example, a solid-state drive that holds 256 GB might be of a similar cost to a hard disk with several terabytes capacity.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How does power requirement correlate to the efficiency of SSDs?

A

-require little power, making them ideal for portable devices where battery life is a big consideration.

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

Considerations for an appropriate type of secondary storage (6) and their relevance.

A

Cost - cost per gigabyte (GB)?
Capacity - how much data can the medium hold?
Speed (of access) - how quickly can data be transferred to and from the medium?
Portability - how portable is the medium? Does it need to be portable?
Durability - how robust is the medium, and how robust will it need to be?
Reliability - how resilient and long-lasting is the medium?

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

SPEED:

A

SSD: fast as there are no moving parts

MAGNETIC: slow due to moving parts

OPTICAL: slow and limited as there are moving parts

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

CAPACITY:

A

MAGNETIC: large

SSD: sufficient

OPTICAL: low

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

COST:

A

MAGNETIC: cheapest per GB

OPTICAL: cheap for small storage

SSD: expensive

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

PORTABILITY:

A

SSD: highly portable and lightweight

OPTICAL: highly portable and light weight

MAGNETIC: internal drives are not portable, external drives are large in size.

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

RELIABILITY:

A

SSD: extremely reliable
MAGNETIC: very reliable
OPTICAL: good in the medium term

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

DURABILITY:

A

SSD: extremely durable

MAGNETIC: good when not in use, can be affected by magnetic fields and heat

OPTICAL: susceptible to scratches and will degrade over time with exposure to sunlight

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

what form is data stored in inside of a computer?

A

-binary form

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

what is a bit?

A

the smallest unit of data a computer can use.

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

what must happen to denary numbers before they can be processed/ used by a computer?

A

-must be converted into their binary equivalent before a computer can use them.

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

what is Overflow?

A

the result of a binary calculation exceeds 8 bits/ the denary value 255

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

what do you write in a binary overflow error?

A

00000000

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

why are overflow errors bad?

A

-overflow can have serious consequences for the validity of calculations.

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

through what process are binary numbers multiplied/ divided?

A

-through a process called shifting.

17
Q

how do you multiply and divide with binary shifts?

A
  • multiply: shift to the left

- divide: shift to the right

18
Q

why is hex useful?

A

-large numbers can be represented using fewer digits.

19
Q

equation for

sound file size:

A

sound file size = sample rate x duration (s) x bit depth

20
Q

equation for:

image file size

A

image file size = colour depth x resolution (image height (px) x image width (px))

21
Q

equation for:

text file size

A

text file size = bits per character x number of characters

22
Q

explain why computers represent data in binary form:

A
  • Computers consist of transistors / logic circuits/gates. ​

- Which only have two values: on (1) or off (0)

23
Q

explain why hexadecimal is used by computer scientists: (2)

A
  • Easier/ faster to convert to and from binary.​
  • composed of fewer digits: 8 bits are represented by 2 characters which thereby makes it easier for humans to remember and makes it less susceptible to human errors
24
Q

what is Binary? (2)

what is denary/ decimal?

A
  • Data format that can be represented by electrical voltages,
  • which can then be processed by logic gates in the computer

-numbers we use in real life

25
Q

can denary be processed by the computer?

A

no

26
Q

what does the term ‘encoding’ mean?

A

Converting data into a binary format so that that it can be stored and processed by a computer

27
Q

what are logic gates?
what do logic gates only process?
what do we use along with it? and for what reason?

A
  • The basic building block of digital computers
  • 1s and 0s
  • use binary to encode all data
28
Q

what does the term ‘base’ refer to?

what is the base of binary, denary/decimal and hex?

A

-number of digits used by a number system

binary = 2
denary = 10
hex = 16
29
Q

what do the terms ‘most significant bit’ and ‘least significant bit’ refer to?

A

MSB-leftmost bit of a binary number- column with the largest place value

LSB-furthest right bit in a binary number

30
Q

what is a possible issue that could be encountered with a right shift?

A

-an issue with precision occurs where odd numbers are divided since a standard byte cannot represent fractional numbers.