SLR 10 & 11

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

1/18

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.

19 Terms

1
New cards

N

Natural - Positive integers

2
New cards

Z

Whole - Positive and negative integers

3
New cards

Q

Rational - values that can be represented as ratios, fractions, or decimals - includes recurring numbers

4
New cards

Irrational

cannot be expressed as a fraction - surds and endless decimals

5
New cards

R

Real - rational and irrational numbers - used for measurements

6
New cards

Ordinal

First, second, third

7
New cards

Why is hex used

  • shorthand binary

  • fewer mistakes

  • easier to remember

  • takes up less memory

8
New cards

Binary

  • Can be 16 bits

  • Two types - signed and unsigned

  • Signed can be negative (127 to -128)

  • Use two's compliment on signed values

9
New cards

Two’s Compliment

  • Only use this if the binary number begins with a 1

  • Flip the bit - 1 = 0 and 0 = 1

  • Add 1 bit

10
New cards

Addition rules

0 + 0 = 0

1 + 0 = 1

1 + 1 = (1) 0

0 + 1 = 1

1 + 1 + 1 = (1) 1

11
New cards

Subtraction

Make the second value negative, then add

Ignore any overflow errors

12
New cards

Multiplication

Double and perform a left shift.

13
New cards

Division

Halve and perform a right shift

14
New cards

Fixed Point

The column headings to the left of the point remain the same, the headings to the right halve

  • not all decimals can be represented - rounding error

  • limits the number of values, especially if signed

15
New cards

Floating Point

Can store almost any decimal as the point can move

  • Mantissa - the main part of the number

  • Exponent - moves the floating point

  • A positive exponent moves to the right, a negative exponent moves to the left

16
New cards

Normalisation

Standard form for binary - stores a number more efficiently - gets rid of excess 0 or 1

Ignore the exponent - will begin 0.1 (positive) or 1.0 (negative)

17
New cards
18
New cards
19
New cards