Units and data representation Flashcards

1
Q

what is the smallest unit a computer can work with and what states can they be

A

A bit
1 (On) or 0 (Off)

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

What is 8 bits called and what is 4 bits called

A

A byte
A nibble

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

how much is 1000 bytes And how much is 1000 kilobytes

A

1 kilo byte
1 megabyte

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

How to remember the order of the bytes and how much of the previous unit is needed to move on to the next

A

Burger King Makes great toast pan (Byte,Kilo,Mega,Tera,Peta)
1000 units

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

What is Analogue data and give examples

A

Real life signal that can vary greatly in data examples include:
sound Pressure light temperature

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

What is digital data

A

Digital data is the data computers use that is made from analogue data

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

How would you convert to digital data from analogue and how would you convert back

A

Use a Analogue digital converter
Use a digital analogue converter

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

How to calculate how many music files (6MB) would fit on a 1 GB USB

A

1GB = 1,000 MB
1000/6 = 166
1666 files

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

How to Convert a Binary number to deanery

A

Add up all the On switches in each place value

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

How to convert binary to hex +Convert 10011010 into Hexadecimal

A

154
to convert a 8 bit number to deanery first you must separate it into nibbles then you must figure out the total amount in each nibble. Then simply write the number it equal to or if its higher than 9 use letters
9A

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

How is each place value represented in HEX

A

Power of 16

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

What are the 1st 4 Hex place values and what is 513 in HEX place values

A

65,535 4,096 256 16 1
2 1

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

How to Multiply/divide Binary Number By: 2,4,8

A

Multiply/divide 2 move binary place value by 1 left/right
Multiply/divide 3 move binary place value by 2 left/right
Multiply/divide 4 move binary place value by 3 left/right

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

What are the common Character sets

A

ASCII
Unicode

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

How many Bits Are ASCII and UNICODE and how much characters can they hold

A

7 Bits PC 128 characters
16 Bits PC over 65,000

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

What is The Denary number range for Capital and lowecase letters (ASCII)

A

65-90 - A-Z
97-122 a-z

17
Q

How is Extended ASCII different from ASCII

A

8 BITS
256 characters including special characters like accents

18
Q

What is Colour depth what is a 2 bit colour depth capable of

A

Tells Us the range of colour range available
4 colours

19
Q

What is Resolution what is it recorded in how much pixels are in a Image with a DPI of 72

A

Resolution is the pixel density in an image
recorded in DPI (Dots per Inch)
72DPI=5184 pixels

20
Q

What is Metadata and give examples

A

Metadata- Data about data
Resolution Bit depth date taken
location

21
Q

How to estimate Image file size and what is the file size of a image with a height of 200 and width 400 and colour depth of 16

A

200 X 400 = 80,000 X 16 = 1,280,000 / 8 = 160,000 bits
160,000 / 1000 = 160 KB

22
Q

How are sounds digitised and what is this unit called

A

ADC will capture a sound wave at regular time intervals Sample

23
Q

What is a sample rate and what is it measured in

A

Sample rate (HZ) Number of samples per second

24
Q

What is bit depth

A

Bit depth = Number of bits used per sample

25
Q

What is bit rate an how is it calculated

A

How much data is processed in each second of sound
Sample rate X Bit depth

26
Q

What is a lossy compression and give examples

A

some Data is removed and discarded such as colour depth

JPEG,MPEG,MP3

File size reduced greatly

27
Q

What is loseless compression name examples and how does it work

A

Files reduced in size without loss of data but not that much

PDF - text
GIF - Image

28
Q

Give a method of Loseless compression and how does it work

A

Run length encoding (RLE)

00000011111111000000 becomes 608160

since there are six 0 then it become 60 at the begining and so on