1.1 number systems

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

1/15

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 9:56 PM on 4/11/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

16 Terms

1
New cards

what are number systems

determines how values are represented using digits

2
New cards

what does a number base do

defines the number of unique digits used in that system

3
New cards

what is denary

they are used by humans for counting, they are base 10.

4
New cards

what is binary

they are used by computers to represent all data and instructions, they are base 2.

5
New cards

what is hexadecimal

they are used by programmers to compact the representation, they are base 16.

6
New cards

how would you convert binary to denary (example 10110010)

128 + 32 + 16 + 2 =178

<p>128 + 32 + 16 + 2 =178 </p>
7
New cards

how would you convert denary to binary

make sure the ones in the binary is added up to the denary number

8
New cards

how would you convert binary to hexadecimal

split byte into nibble and convert each nibble into denary and convert into hexadecimal

A= 10

B = 11

C = 12

etc.

9
New cards

how would you convert hexadecimal to binary

split each hexadecimal digit and convert into denary then binary then put all binary code together.

10
New cards

why is hexadecimal used

easier for people to read and takes less time to type the binary, and is shorthand representation of binary.

11
New cards

what two examples do people used hexadecimal for

colour codes - hexadecimal used to represent the RGB colours values in HTML

Media access control address - devices on a network have a unique media access control address written in hexadecimal

12
New cards

what are the rules of binary addition

1 + 0 = 1 (no carry)

0 + 0 = 0 (no carry)

0 + 1 = 1 (no carry)

1 + 1 = 0 (carry one)

1 + 1 + 1 = 1 (carry one)

13
New cards

where do we shift the binary when dividing

right shift

14
New cards

where do we shift the binary when multiplying

left shift

15
New cards

what is 2s complement

representing negative numbers

16
New cards

what is the process of 2 complement

flip all binary 0 to 1 and 0 to 1

add one