2.1 Numbering System
2.1 Numbering System
System
Number System Introduction
System of
Binary Counting
11100010 00101000 01101010 01010001
Octal
Computer Data
123
00000000 00000001 00000010 00001110
Hello
00000100 00001001 01001010 00001110
2 2 4 0 0
Binary Representation
27 26 25 24 23 22 21 20
128 64 32 16 8 4 2 1
1 0 0 1 1 0 1 1
32 Bits = 4 Bytes
64 Bits = 8 Bytes
How does computer understand your code?
Decimal
27 26 25 24 23 22 21 20
Value
Octal Numbers
128 64 32 16 8 4 2 1
0 0 0 0 0 0 0 0 0
1 0 0 0 0 0 0 0 1
2 0 0 0 0 0 0 1 0
3 0 0 0 0 0 0 1 1
4 0 0 0 0 0 1 0 0
5 0 0 0 0 0 1 0 1
6 0 0 0 0 0 1 1 0
7 0 0 0 0 0 1 1 1
Hexadecimal Numbers Decimal
27 26 25 24 23 22 21 20
Value
128 64 32 16 8 4 2 1
8 0 0 0 0 1 0 0 0
9 0 0 0 0 1 0 0 1
A 0 0 0 0 1 0 1 0
B 0 0 0 0 1 0 1 1
C 0 0 0 0 1 1 0 0
D 0 0 0 0 1 1 0 1
E 0 0 0 0 1 1 1 0
F 0 0 0 0 1 1 1 1
ACSII (American Standard Code Information
Interchange) for A
Dec Oct
65 101
Binary
Hex
41 01000001
Mmm, can I fit in?...
ACSII Table
https://www.lookuptables.com/text/ascii-table
Bit
A 0100 0001
64 + 1 = 65
THANK YOU
TechAge