Unit 3 data representation

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

1/63

flashcard set

Earn XP

Description and Tags

AQA A-level Computer science

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

64 Terms

1
New cards

Natural Numbers

Whole numbers used for counting; an infinite set including 0.

2
New cards

Rational Numbers

Any value that can be expressed as a ratio or fraction, including all integer values.

3
New cards

Irrational Numbers

Numbers that cannot be expressed as a fraction and have an endless series of non-repeating digits (e.g., Pi).

4
New cards

Set of Integers

Represented by Z; includes all whole numbers and their negatives.

5
New cards

Set of Rational Numbers

Represented by Q; includes all numbers that can be expressed as a ratio of two integers.

6
New cards

Real Number (R)

Any rational or irrational number, but does not include imaginary numbers.

7
New cards

Ordinal Numbers

Describe the numerical position of objects (e.g., first in a race); used as pointers to a particular element in a sequence.

8
New cards

Number Base - Decimal

Our decimal system uses digits 0-9 and has a base of 10.

9
New cards

Number Base - Binary

Uses digits 0 and 1 and has a base of 2.

10
New cards

Number Base - Hexadecimal

Uses a base of 16.

11
New cards

Maximum values that can be represented using binary for n bits

(2^n) - 1

12
New cards

Hexadecimal System

A shorthand for binary, simpler to represent and less prone to errors.

13
New cards

Bit

A fundamental unit of information; either a single 1 or 0.

14
New cards

Nibble

A set of 4 bits.

15
New cards

Byte

A set of 8 bits.

16
New cards

Kibi (Ki)

2^10, 1024

17
New cards

Kilo (K)

10^3

18
New cards

Mebi (Mi)

2^20, 1048576

19
New cards

Mega (M)

10^6

20
New cards

Gibi (Gi)

2^30, 1073741824

21
New cards

Giga (G)

10^9

22
New cards

Tebi (Ti)

2^40, 1099511627776

23
New cards

Tera (T)

10^12

24
New cards

Pebi (Pi)

2^50

25
New cards

Peta (P)

10^15

26
New cards

Exbi (Ei)

2^60

27
New cards

Exa (E)

10^18

28
New cards

Zebi (Zi)

2^70

29
New cards

Zetta (Z)

10^21

30
New cards

Yobi (Yi)

2^80

31
New cards

Yotta (Y)

10^24

32
New cards

ASCII Code

Historically the standard code for representing characters; uses 7 bits.

33
New cards

Unicode

A 16-bit code that allows for 65536 different combinations representing alphabets from dozens of languages.

34
New cards

Parity Bit

An additional bit used to check that the other bits transmitted are likely to be correct.

35
New cards

Majority Voting

Requires each bit to be sent 3 times; computer goes with the majority if a bit value is flipped.

36
New cards

Checksum

A mathematical operation applied to a unit of data; checksum value is transmitted with the block.

37
New cards

Check Digit

Similar to a checksum; an additional digit added to a string of numbers to check for mistakes.

38
New cards

Overflow

When 8 bits are used and the result of a calculation is bigger than 255, requiring a ninth bit.

39
New cards

Two’s Complement

Flip all the digits and then add one.

40
New cards

Fixed Point Binary Numbers

A way to represent fractions in binary using a binary point to separate whole numbers from the fractional part.

41
New cards

Bitmap or Raster Image

Contains many pixels (picture elements) that make up the whole image.

42
New cards

Resolution

Expressed as the width in pixels * the height in pixels.

43
New cards

Resolution (pixels per inch)

Expressed as the number of pixels per inch or PPI; indicates the density of the pixels.

44
New cards

Color Depth

The number of bits that determine the number of color combinations a pixel can represent.

45
New cards

File Size (bitmapped image)

Resolution * color depth.

46
New cards

Meta Data

Data about data; includes details such as width in pixels, color depth, date and time taken.

47
New cards

Vector Graphics

Images made up of geometric shapes or objects; stores only necessary details to redraw the image.

48
New cards

Sound Waves

Naturally occurring in a continuous analogue form; converted to a discrete digital format for computers.

49
New cards

Sample Rate

The frequency with which you record the amplitude of the sound; affects the smoothness of playback.

50
New cards

Calculating Sound Sample Sizes

Number of samples per second * number of bits per sample * length of the sample in seconds.

51
New cards

Analogue Signal

A continuous signal which represents physical measurements.

52
New cards

Digital Signal

Discrete time signals generated by digital modulation.

53
New cards

Analogue to Digital Conversion

The process of converting analogue sound into digital recording, using an ADC.

54
New cards

Interpreting Frequency

Determined by the speed of oscillation or vibration of a wave; controls the pitch and is measured in hertz (Hz).

55
New cards

Nyquist's Theorem

Sample rate must be double the highest frequency in the original signal.

56
New cards

Musical Instrument Digital Interface (MIDI)

A technical standard that describes a protocol for connecting electronic musical instruments and computers.

57
New cards

Compression Algorithms

Reduces the storage needed for files on a disk; can be lossy or lossless.

58
New cards

Lossy Compression

Removes unnecessary information from the original file, resulting in loss of quality.

59
New cards

Lossless Compression

Retains all the information to replicate the file exactly.

60
New cards

Run Length Encoding (RLE)

Records the value of how many times a pixel has been repeated.

61
New cards

Dictionary Based Compression Techniques

Searches through the text to find suitable entries for its own dictionary and stores these words as a binary value.

62
New cards

Encryption

Transformation of data into a different form to prevent unauthorized access; plain text becomes cypher text.

63
New cards

The Caesar Cypher

Works by shifting the letters of the alphabet along by a given number of characters.

64
New cards

The Vernam Cypher

Uses one time pad ciphers which, if used properly, provide perfect security.