Fundamentals of data representation

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

1/24

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.

25 Terms

1
New cards

natural number

a positive whole number including 0

2
New cards

integer

All whole numbers (both positive and negative) and zero.

3
New cards

rational number

Any number that can be expressed as a ratio of integers

4
New cards

irrational number

a number that can NOT be expressed as a ratio of two integers or as a repeating or terminating decimal - Pi or any square root of an imperfect square are considered irrational

5
New cards

real number

any positive or negative number with or without a fractional part

6
New cards

ordinal number

A whole number that names the position of an object in sequence ( first, second, third...)

7
New cards

cardinal numbers

A number that identifies the size of something.

8
New cards

well-ordered set

A group of related numbers with a defined order.

9
New cards

array

a data structure where data items are grouped together under single identifier and are the accessed based on their position

10
New cards

Number bases

the number of different digits available within a particular number system e.g. binary - base 2

11
New cards

bit

A single binary digit: 1 or 0

12
New cards

Byte

A group of eight bits used to represent a singe character

13
New cards

unit

the grouping together of bits or bytes to form larger blocks of measurements e.g. GB, MB

<p>the grouping together of bits or bytes to form larger blocks of measurements <span class="bgB">e.g. GB, MB</span></p>
14
New cards

Hexadecimal

A base-16 number system that uses sixteen distinct symbols 0-9 and A-F to represent numbers from 0 to 15.

<p>A base-16 number system that uses sixteen distinct symbols 0-9 and A-F to represent numbers from 0 to 15.</p>
15
New cards

unsigned binary

Binary that represents positive numbers only

16
New cards

two's complement

A method of working with signed binary values where when the binary value is 1 you change the rest of them to their opposing value until the most significant bit then do -128 plus all of the binary digits that are 1.

17
New cards

fixed point

Where the decimal/binary point is fixed within a number

18
New cards

floating point

Where the decimal/binary point can move within a number

19
New cards

Signed binary

Binary with a positive or negative sign

20
New cards

overflow

When a number is too large to be represented with the number of bits allocated

21
New cards

underflow

When a number is too small to be represented with the number of bits allocated.

22
New cards

normalisation

A process for adjusting numbers onto a common scale

23
New cards

precision

how accurate a number is

24
New cards

mantissa

The significant digits that make up a number

25
New cards

exponent

the 'power of' part of a number indicating how far a binary point should be shifted left or right.