Data representation (AQA GCSE COMPUTING)

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/37

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 4:01 PM on 5/23/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

38 Terms

1
New cards

what are the bases for decimal, binary and hexadecimal

decimal - base 10

binary - base 2

hexadecimal - base 16

2
New cards

why do computers use binary

to represent all data and instruction

3
New cards

what can bit pattern represent

text, images, sound and integer

4
New cards

what is a bit

a bit is the fundamental unit of information

5
New cards

what is a byte

a byte is a group of 8 bits

6
New cards

hwo can u represent a bit and a byte

b - bit

B - byte

7
New cards

true or false: a bit is either a 0 or 1

true

8
New cards

a kilo is how many bytes

1000 bytes

9
New cards

a mega is how many kilobyte

1000 kilobyte

10
New cards

a giga is how many megabytes

1000 megabyte

11
New cards

a tera is how many gigabytes

1000 gigabytes

12
New cards

0 + 0 = ?

0 + 1 = ?

1 + 0 = ?

1 + 1 = ?

1 + 1 + 1 = ?

0

1

1

write 0 then carry 1

write 1 then carry 1

13
New cards

where can binary shift be used

binary shift can be used to perform simple multiplication/division by powers of 2

14
New cards

what is a character set

a defined list of characters recognised by a computer, where every character is assigned a unique binary code

15
New cards

what number is letter A in ASCII

65

16
New cards

what number is letter a in ASCII

10

17
New cards

describe what character codes are

charcaters codes are grouped and they run in sequence eg: A = 65 and B = 66 etc….

18
New cards

what is the purpose of Unicode

to provide a globally recognized universal character set capable of representing all major world alphabets, mathematical symbols, and emojis

19
New cards

what are the advantages of using unicode rather than ASCII

different alphabets

special symbol allowing a far greater range of charcaters

20
New cards

true or False:Unicode doesn’t use the same codes as ASCII up to 127

FALSE:

Unicode uses the same codes as ASCII up to 217

21
New cards

what is pixel short for

picture element

22
New cards

define what a pixel is

a single point in an image

23
New cards

describe how pixels relate to an image and the way images are displayed.

Millions of these tiny coloured squares work together like a mosaic or a digital "paint-by-numbers" to form a complete picture

24
New cards

define image size

width x height

25
New cards

define colour depth

colour depth is the number of bits used to represent each pixel

26
New cards

How does a bitmap represent an image using pixels and colour depth?

A grid of individual dots called pixels are assigned a binary value determining it’s colour

27
New cards

Calculate bitmap image file sizes based on the number of pixels and colour depth.

Size = (bits) = W x H x D

Size = (bytes) = (W x H x D)/8

W = image width

H = image height

D = colour depth in bits.

28
New cards

what is sound and what must it be converted into for storage and processing

sound is analogue and that it must be converted to a digital from for storage and processing

29
New cards

define sample

sample is a measure of amplitude at a point in time

30
New cards

define sample rate and what it is measured in

Sampling rate is the number of samples taken in a second and is usually measured in hertz (1 hertz = 1 sample per second).

31
New cards

define sample resolution

Sample resolution is the number of bits per sample.

32
New cards

Calculate sound file sizes based on the sampling rate and the sample resolution.

File size (bits) = rate x res x secs

rate = sampling rate

res = sample resolution

secs = number of seconds

33
New cards

define what data compression

is the process of reducing the file size by re - encoding data using fewer bits

34
New cards

why may it be necessary or desirable to compress data

for maximum capacity and cost saving

35
New cards

how can data be compressed by using huffman coding

assigning shorter binary codes to frequently occuring characters and larger codes for rare ones

36
New cards

how to calculate the no. of bits required to be compressed by huffman coding

taking the no. of bits required char x no. of time the char appears in string

37
New cards

how to calculate the no. of bits required for uncompressed ASCII

count the total no. of char and multiply by 7 or 8 bits

38
New cards

How can data be compressed in RLE

replacin =g consecutive repeating char ( a run) with a single instance of a char and a count of it’s repetition

eg: AAAA BBB CCC —> 4A3B2C