9618 Computer Science : Information Representation

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/18

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

19 Terms

1
New cards

Largest 8 Bit Binary

1 1 1 1 1 1 1 1

2
New cards

Smallest 8 Bit Binary

0 0 0 0 0 0 0 0

3
New cards

What is 218 in Hexadecimal

218 is 1 1 0 1 1 0 1 0 in binary

1 1 0 1 = 13 = D

1 0 1 0 = 10 = A

So, 218 = DA

4
New cards

4 uses of hexadecimal

1. HTML color codes

2. Mac addresses

3. Memory dumps

4. Error messages

5
New cards

What is an overflow error?

Occurs when a computer tries to store a value that is bigger than the number of bits available.

6
New cards

What is BCD

Binary Coded Decimal is a method of representing single decimal digits as 4-bit binary.

7
New cards

What are some uses of BCD

Digital time display

On-screen calculator

Currency values

8
New cards

Advantages of BCD

Simple for humans to represent large denary values in digital form compared to binary.

9
New cards

Disadvantages of BCD

The range of values is lower as it can only represent the denary values 0-9.

10
New cards

What is 394 in BCD

394 is 3 9 4

3 = 0 0 1 1

9 = 1 0 0 1

4 = 0 1 0 0

So, 394 in BCD = 0 0 1 1 1 0 0 1 0 1 0 0

11
New cards

What is 572 in BCD

572 is 5 7 2

5 = 0 1 0 1

7 = 0 1 1 1

2 = 0 0 1 0

So, 572 in BCD is 0 1 0 1 0 1 1 1 0 0 1 0

12
New cards

What is encoding

A process that turns analogue data into binary code

13
New cards

What is compression?

A process where a file's size is reduced to make it smaller. Files that have been compressed may need to be decompressed in order to be opened.

14
New cards

What are some benefits of compression?

1. Can help reduce the storage size needed to store the file

2. Quicker transfer times to upload/download the file.

3. Reduce the bandwidth needed to transfer the file on the internet.

4. Take less time to transmit the file directly between devices.

15
New cards

What is lossy compression?

Lossy compression uses an algorithm to automatically identify and remove redundant data like Sound frequencies humans can't hear, Shades of color that humans can't see.

16
New cards

What are the features of lossy compression?

Reduces file size by a lot

Images/sound can be of similar quality

Original file can't be recreated

Original file can't be recovered

Images are compressed by reducing the color depth or the resolution

Text files can't use lossy compression as loss of letters or words will make the text meaningless

17
New cards

What is lossless compression?

lossless compression uses an algorithm to group together identical colors and sounds.

Doesn't reduce the file size by a lot

Any data removed can be recovered

18
New cards

What are the features of lossless compression?

In images, identical colors are grouped together

In Sound files, sections of identical sounds are grouped together

original file can be recreated

19
New cards

What is RLE?

Run length encoding is a lossless compression method where an algorithm identifies runs of pixels with the same color. It records the color and the length of each run.