Memory And Storage Flashcards

1
Q

Name 2 character sets

A
  • ASCII
    *Unicode
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the difference between Unicode and ASCII?

A

Unicode is universal (emojis, symbols, etc) (16 bits)
ASCII is general English characters (8 bits)

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

How is an image stored in a computer?

A

With pixels

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

What is a pixel?

A

A square represented by a binary code

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

What is represented by the binary code in a pixel?

A

Colour

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

How do you find file size of an image?

A

Colour depth x resolution

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

What is metadata?

A

Data about data (author, place image was taken)

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

How is sound stored in a computer?

A

The height of the wave (amplitude) is stored as binary

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

How many bytes in a kilobyte?

A

1000

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

How many bytes in a megabyte?

A

1,000,000

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

Explain why computers use binary

A

Computers only understand 0’s and 1’s so each character needs to be stored as binary to be understood

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

What is binary 0 + 0 ?

A

0

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

What is binary 0 + 1 ?

A

1

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

What is binary 1+1?

A

10

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

What is binary 1+1+1 ?

A

11

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

How many bits in a byte?

A

8

17
Q

How many bytes in a kilobyte?

A

1000

18
Q

How many bytes in a megabyte?

A

1000000

19
Q

Why does a computer store data and instructions in binary?

A

Binary is one’s and zeros (on and off). A computer uses switches (on and off) to store data

20
Q

Translate to denary: 01101001

A

105

21
Q

Convert 78 to binary

A

01001110

22
Q

Add 11001011 to 10010101

A

101100000

23
Q

Name the five rules of binary addition

A
  • 0 + 0 = 0
  • 0 + 1 = 1
  • 1 + 0 = 1
  • 1 + 1 = 10
  • 1 + 1 + 1 = 11
24
Q

What happens in a binary shift two places to the left?

A

Multiply by 4

25
Q

Convert 3C to binary

A

00111100