You are on page 1of 2

decimal number system (10)

1234

1000+200+30+4

1*103+2*102+3*101+4*100

binary (2)

24 23 22 21 20

16 8 4 2 1

Hexa Decimal 8 4 2 1
0 0 0 0 0 0
1 1 0 0 0 1
2 2 0 0 1 0
3 3 0 0 1 1
4 4 0 1 0 0
5 5 0 1 0 1
6 6 0 1 1 0
7 7 0 1 1 1
8 8 1 0 0 0
9 9 1 0 0 1
A 10 1 0 1 0
B 11 1 0 1 1
C 12 1 1 0 0
D 13 1 1 0 1
E 14 1 1 1 0
F 15 1 1 1 1

1011

1*23+0*22+1*21+1*20

1*8+0*4+1*2+1*1

11 decimal

hexa B

bit – byte

8bits

34
3*81+4*80

24+4

=28

(234)9=()10

2*92+3*91+4*90
2*256+48+4=(564)
10

17

8 1

4 0

2 0

1 0

0 1

10001

011 011 010 111


3 3 2 7

 Decimal to any number system


division with base of that number system
 any number system to decimal
multiplication
 any to any other
binary to octal
binary to decimal
decimal to octal
()5 = ()7
5-10 - 7

You might also like