computer science data representation

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

1/29

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 7:20 AM on 9/16/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

30 Terms

1
New cards

What is a natural number

A set of positive integers and 0

2
New cards

What is integer numbers

The set of numbers with no fractional part

3
New cards

What is a rational number

The set of numbers that can be expressed as the ratio of two integers Eg.1/3 or 0.1111

4
New cards

Explain the binary number base system

A number of system that only uses ones and zeros to represent numbers base 2

5
New cards

Define irrational numbers

Numbers which cannot be expressed as a ratio of two integers this does not include pi

6
New cards

Real numbers definition

The set of numbers that can be represented real world quantities and have an imaginary part of 0. These include rational and irrational numbers

7
New cards

Original numbers definition

Natural numbers used to describe numerical positions or order of objects

8
New cards

Decimal number base system

A number system that only uses 10 characters 0-9 to represent a base 10 number system

9
New cards

Explain hexadecimal base system

A number base system that only uses 16 characters 0-9 and A-F to represent numbers in the base 16 system

10
New cards

Base number

The number of unique digits used in particular number systems to represent numbers

11
New cards

What is a bit

A binary digit used by computers as fundamental unit of information

12
New cards

What is a byte

A group of 8 bits

13
New cards

What is a binary prefix

A prefix to a unit representing a power of 2


14
New cards

What is a decimal prefix

A prefix to a unit representing a power of 10

15
New cards

What involves signed binary

A binary number system that can represent both positive and negative numbers

16
New cards

What involves unsigned binary

A binary number system that can only represent positive numbers

17
New cards

What is twos complement

A coding scheme used in single binary to represent negative as well as positive numbers. Negative is done by flipping all the digits and adding 1 to the most significant bit

18
New cards

What is an exponent

A component of floating point from that stores the numbers of positions to move the decimal point

19
New cards

Explain what a fixed point form

A form used to represent numbers with fractional part in any number system. Digits after the fixed point are multiplied by the bas raised to a negative power

20
New cards

What is a floating point form

A form used to represent numbers with fractional part in any number system. The radix point is free to move due to the presence of an adjustable exponent

21
New cards

Explain what a mantissa is

A component of floating point form that stores the non-zero significant digits of a number

22
New cards

Explain what a rounding error is

Errors inherently introduced to any calculations with fixed or floating point numbers since they cannot store numbers with infinite precisions

23
New cards

What is an absolute error

The difference between the exact correct value and rounded value

24
New cards

What is a relative error

The percentage difference between the exact correct value and rounded value

25
New cards

What does normalisation

The process of ensuring a floating point number is represented as efficiently as possible by adjusting the position of radix point and exponent

26
New cards

What’s under flow

The misinterpretation of numerical value because it is too small to be represented with the allocated number of digits in the mantissa and exponent

27
New cards

What’s overflow

The misinterpretation of a numerical value value because it’s to large to be represented with the allocated number of digits in the mantissa and exponent

28
New cards

What is character code

A unique binary representation of a character not binary representation

29
New cards

ASCII


A character set used to represent alphanumeric characters or symbols as a set of 8 bits

30
New cards

What is a Unicode

A character set that is a superset of ASCII. It is used to represent alphanumeric characters or symbols as an integer code which is equal to the characters ASCII code