Data representation

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

1/19

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.

20 Terms

1
New cards

What does 1 and 0s represent?

Represent the flow of electricity

1s = used to show that electricity is flowing

0s = used to show that electricity isnt flowing

Each 1s and 0s is a bit

2
New cards

What are the measures of data?

Bit (b) = a single binary bit (1 per 1s and 0s)

Nibble = 4 bits

Byte (B) = 8 bits

Kilobyte (kB) = 1000 kilobytes

Gigabyte (GB) = 1000 megabytes

Terabyte (TB) = 1000 gigabytes

Petabyte (PB) = 1000 terabytes

3
New cards

What is the system denary? Whats it also known as?

Our normal number system (0-9)

It also known as base-10

4
New cards

What is the binary system?

A numerical system that uses only two digits, 0 and 1

5
New cards

How do we use binary to make a denary number eg 11?

A binary table:

Make the number 11

8s / 4s / 2s / 1s

1 / 0 / 1 / 1 = 1011

1×8=8

0×4=0

2×1=2

1×1=1

8+0+2+1 = 11

6
New cards

How do we convert between binary to denary?

Write a binary number line and convert the number 89 to binary

128 / 64 / 32 / 16 / 8 / 4 / 2 / 1

0 / 1 / 0 / 1 / 1 / 0 / 0 / 1

64+16+8+1= 89 = 01011001

7
New cards

How to you conveter from binary to denary?

Write in the binary numberline and fill in the binary numer

128 / 64 / 32 / 16 / 8 / 4 / 2 / 1

0 / 1 / 0 / 1 / 1 / 0 / 0 / 1

/ 64 / / 16 / 8 / / / 1 = 89

8
New cards

How do we use column addition on binary?

1 + 1 = 1

0 + 0 = 0

1 + 0 = 10 (carry the one)

<p>1 + 1 = 1</p><p>0 + 0 = 0</p><p>1 + 0 = 10 (carry the one)</p>
9
New cards

What is a overflow in binary?

When there are too many numbers (more then 8 bits)

The compuer stores the extra bit elsewhere

10
New cards

What happens to the data if there is a overflow?

There is a lost of accuracy and data

11
New cards

What are binary shifts?

Moves every number in the binary left or right

12
New cards

What happens when a binary number shifts to the left?

The number doubles/multipys moving to the left

We fill the new gaps in with 0s

This may lead to a overflow

13
New cards

What happens when a binary number shifts to the right?

The number divides/halves

We fill the new gaps in with 0s

14
New cards

What is the purpose if hexidecimal?

To simplify/make binary numbers smaller

15
New cards

How convert binary → hexidecimal

  • Split the binary number in half and convert to a denary number

  • If the number is over the number 9 it becomes a letter

16-base = 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F

16
New cards

What are alphanumeric characters?

  • Used to make words and strings

  • This includes uppercase and lowercase letters, symbols and numbers 0-9

17
New cards

What are character sets?

Collections of characters that a computer recognises from their binary representation

18
New cards

What are alphanumeric characters?

Used to make words and strings

Include:

  • Upper case and lower case

  • 0-9

  • Symbols

19
New cards

What are character sets?

Collections of characters that a computer recognises from their binary representation

Also contains special characters which do certain commands

20
New cards