SlideShare una empresa de Scribd logo
1 de 32
HOW DOES TECHNOLOGY
WORKS?
THE NUMBER SYSTEM
WHAT IS NUMBER SYSTEM?
• Computers understand machine language. Every letter, symbol etc.
that we write in the instructions given to computer, it gets converted into machine
language.
• This machine language comprises of numbers. In order to
understand the language used by computers and other digital
system it is crucial to have a better understanding of number
system.
• Commonly Used Number system
• Consist of 10 Digits (0-9).Base-10
• Example: 107,78,98,2786
Types of Number System
Decimal
Number
System
Binary Number
System
Hexadecimal
Number System
Octal Number
System
• Use in Digital Computers
• Consist of 2 Digits (0 and 1).Base-2
• Example: 10001,10100
• Consist of 16 Digits (0-9) (A-F)
• Base-16
• Example: D1CE,2E6
• Consist of 8 Digits (0-7)
• Base-8
• Example: 6675,0453,655
The Decimal System (Base) 10
• The word decimal is derived from the Latin root
decem(ten)
• Base b = 10
• Ten symbols: S = {0,1,2,3,4,5,6,7,8,9}
Example:45,452,501,4521
• The symbols in this system are often referred to
as decimal digits or just digits.
THE BINARY SYSTEM (BASE) 2
• The word binary is derived from the Latin root
• bini (double).
• Base b = 2.
• Ten symbols: S = {0, 1}
Binary is a base 2 number system invented by Gottfried Leibniz that is made up of only
two numbers: 0 and 1. This number system is the basis for all binary code, which is used to
write data such as the instructions that computer processors use, or the digital text you
read every day.
Computers Understand
ON OF
FTRU
E
FALSE
ONE ZER
O
DECIMAL TO BINARY
72
520
5078
=
=
=
1001000
1000001000
1001111010110
TEXT TO BINARY
HI
1001000 1101001
HELLO WORLD
1101000 1100101 1101100
1101100 1101111 0100000
1110111 1101111 1110010
1101100 1100100
TCCSTFI
1010100 1000011 1000011
1010011 1010100 1000110
1001001
48753 1011111001110001=
WORLD
01110111 01101111 01110010
01101100 01100100
EVERY GAME YOU PLAY
ARE MADE-UP WITH BINARY
EVERY SITE YOU VISIT
ARE MADE-UP WITH BINARY
CONVERT
DECIMAL
TO
BINARY
DECIMAL BINARYTO
2 1 2
10
=
212 / 2 RESULT 106 REMAINDER 0
106 /
53
26
13
6
3
1
2 RESULT 53 REMAINDER 0
/
/
/
/
/
/
2 RESULT 26 REMAINDER
02 RESULT 13 REMAINDER
2 RESULT 6 REMAINDER
1
1
2 RESULT 3 REMAINDER 0
2 RESULT 1 REMAINDER 1
2 RESULT 0 REMAINDER 1
1 1 0 1 0 1 0 0
2
DECIMAL BINARYTO
5 8 6 210
=
5862 / 2 RESULT 2931 REMAINDER 0
1 0 1 1 0 1 1 1
2
2931 / 2 RESULT 1465 REMAINDER 1
1465 / 2 RESULT 732 REMAINDER 1
732 / 2 RESULT 366 REMAINDER 0
366 / 2 RESULT 183 REMAINDER 0
183 / 2 RESULT 91 REMAINDER 1
91 / 2 RESULT 45 REMAINDER 1
45 / 2 RESULT 22 REMAINDER 1
22 / 2 RESULT 11 REMAINDER 0
11 / 2 RESULT 5 REMAINDER 1
5 / 2 RESULT 2 REMAINDER 1
2 / 2 RESULT 1 REMAINDER 0
1 / 2 RESULT 0 REMAINDER 1
0 0 1 1 0
CONVERT THE FOLLOWING
PROBLEM?
DECIMAL BINARYTO
301410
648910
125610
2245 10
=
=
=
=752 10
=
101111000110
2
1100101011001
10011101000
100011000101
1011110000
2
2
2
2
1.
2.
3.
4.
5.
CONVERT
BINARY
TO
DECIMAL
THE BINARY TABLE
128 64 32 16 8 4 2 1
DECIMALBINARY TO
1 0 1 0 1
2
2
0
2
1
2
2
2
3
2
4
1 X 10 X 21 X 40 X 81 X 16
01234
16 0 4 0 1+ + + + = 21
21
10
=
128 64 32 16 8 4 2 1
THE BINARY TABLE
DECIMALBINARY TO
1 0 1 0 1 0 0 1 1
2
2
0
2
1
2
2
2
3
2
4
1 X 11 X 20 X 40X 81 X 16
01234
339
10
=
128 64 32 16 8 4 2 1
THE BINARY TABLE
2
5
2
6
2
7
2
8
0 X 32
5
1 X 64
6
0X 128
7
1 X 256
8
+ + + + + + + +256 0 64 0 16 0 0 2 1 = 339
DECIMALBINARY TO
1 0 1 1 0 1 0 1 0
2 10
=
1248163264128256
256 64+ + 2+ =32 + 8
362
362
CONVERT THE FOLLOWING
PROBLEM?
DECIMALBINARY TO
10
=
=
=
=
=
1001000101001
21.
2.
3.
4.
5.
10111000111100
10011110011101
11000010101001
10101110100101
2
2
2
2
4649
11836
10141
12457
11173
10
10
10
10
CONVERT THE FOLLOWING PROBLEM?
10=
=
=
=
=
111101110101021.
2.
3.
4.
5.
100101011010
11001010111
11010111010100
1110000101010000
2
2
2
2
7914
2394
1623
13780
57680
10
10
10
10
6.
7.
8.
9.
10.
= 1011000010011111
2
45215
10
= 1100011010001102
25414
10
= 1010010111010011
2
42451
10
= 10010011010010100
2
75412
10
= 11010000100111110000
2
854512
10
THE HEXADECIMAL SYSTEM
(BASE 16)
• The word hexadecimal is derived from the Greek
root hex (six) and Latin root decem (ten).
• Base b = 16.
• Ten symbols: S = {0, 1,2,3,4,5,6,7, 8, 9, A, B, C, D,
E, F}
• Example: 2AF , 3DF4 , 5FAE3 , 8CF09
• The symbols in this system are often referred to
• as hexadecimal digits.
THE RELATIONSHIP BETWEEN
DECIMAL TO HEXADECIMAL
0
1
2
3
4
5
6
7
9
0
1
2
3
4
5
6
7
9
DECIMAL TO HEXADECIMAL
10
11
12
13
14
15
=
=
=
=
=
=
A
B
C
D
E
F
=
=
=
=
=
=
=
=
=
CONVERT
HEXADECIMAL
TO
DECIMAL
2 3 E
HEXADECIMAL DECIMAL
=16
16
0
16
1
16
2
2 X 16
2
+ 3 X 16
1
+ 14 X 16
0
10
11
12
13
14
15
=
=
=
=
=
=
A
B
C
D
E
F
DH
2 X 256 + 3 X 16 + 14
512 + 48 + 14 574=
574 10
TO
HEXADECIMAL DECIMALTO
10
11
12
13
14
15
=
=
=
=
=
=
A
B
C
D
E
F
DH
A B 0 9
16
=
16
0
16
1
16
2
16
3
10 X 16
3
+ 11 X 16
2
+ 0 X 16
1
+ 9 X 16
0
10 X 4096 + 11 X 256 + 0 + 9
40960 + 2816 + 0 + 9 43785=
4378510
X 16
THE OCTAL SYSTEM (BASE 8)
• The word octal is derived from the Latin root octo
• (eight).
• Base b = 8.
{0, 1, 2, 3, 4, 5, 6, 7}
Example: {1524 , 576 , 342}
CONVERT
HEXADECIMAL
TO
OCTAL
HEXADECIMAL OCTALTO
A C
16
10
11
12
13
14
15
=
=
=
=
=
=
A
B
C
D
E
F
DH
10
CONVERT
TO DECIMAL
12
8 4 2 1 8 4 2 1
1 0 1 0 1 1 0 0
=
001101010
2 5 4 = 2 5 4
2 5 4
8
124 124 124
HEXADECIMAL OCTALTO
10
11
12
13
14
15
=
=
=
=
=
=
A
B
C
D
E
F
DH
1 E F
16
8 4 2 1
8 4 2 1
8 4 2 1
100 0 1 1 1 1
1 1 1 0
1 1 1 11 1 1 0100 0
124124124124
7 5 7 = 7 5 7
7 5 78
CONVERT
TO DECIMAL
1
14
15

Más contenido relacionado

La actualidad más candente

Lecture-2(2): Number System & Conversion
Lecture-2(2): Number System & ConversionLecture-2(2): Number System & Conversion
Lecture-2(2): Number System & ConversionMubashir Ali
 
Binary number system
Binary number systemBinary number system
Binary number systemNadeem Uddin
 
Data representation in computers
Data representation in computersData representation in computers
Data representation in computersHazel Anne Quirao
 
Number System (Binary,octal,Decimal,Hexadecimal)
Number System (Binary,octal,Decimal,Hexadecimal)Number System (Binary,octal,Decimal,Hexadecimal)
Number System (Binary,octal,Decimal,Hexadecimal)Lovely Singh
 
Hexadecimal numbers
Hexadecimal  numbersHexadecimal  numbers
Hexadecimal numbersatcnerd
 
Ebcdic code 24 1
Ebcdic code 24 1Ebcdic code 24 1
Ebcdic code 24 1myrajendra
 
Complements of numbers
Complements of numbersComplements of numbers
Complements of numbersKiriti Varkur
 
Switching techniques
Switching techniquesSwitching techniques
Switching techniquesAmit Kumar
 
step by step to write a gnome-shell extension
step by step to write a gnome-shell extension step by step to write a gnome-shell extension
step by step to write a gnome-shell extension Yuren Ju
 
Relational Data Model Introduction
Relational Data Model IntroductionRelational Data Model Introduction
Relational Data Model IntroductionNishant Munjal
 
PPT ON NUMBER SYSTEM
PPT ON NUMBER SYSTEMPPT ON NUMBER SYSTEM
PPT ON NUMBER SYSTEMRishabh Kanth
 
11 octal number system
11   octal number system11   octal number system
11 octal number systemLee Chadwick
 

La actualidad más candente (20)

Conversion binary to decimal
Conversion binary to decimalConversion binary to decimal
Conversion binary to decimal
 
Telnet
TelnetTelnet
Telnet
 
Lecture-2(2): Number System & Conversion
Lecture-2(2): Number System & ConversionLecture-2(2): Number System & Conversion
Lecture-2(2): Number System & Conversion
 
Binary number system
Binary number systemBinary number system
Binary number system
 
Data representation in computers
Data representation in computersData representation in computers
Data representation in computers
 
Number System (Binary,octal,Decimal,Hexadecimal)
Number System (Binary,octal,Decimal,Hexadecimal)Number System (Binary,octal,Decimal,Hexadecimal)
Number System (Binary,octal,Decimal,Hexadecimal)
 
Hexadecimal numbers
Hexadecimal  numbersHexadecimal  numbers
Hexadecimal numbers
 
Number system
Number system Number system
Number system
 
K - Map
  K - Map    K - Map
K - Map
 
Binary codes
Binary codesBinary codes
Binary codes
 
Data representation
Data representationData representation
Data representation
 
Number systems
Number systemsNumber systems
Number systems
 
Number system
Number systemNumber system
Number system
 
Ebcdic code 24 1
Ebcdic code 24 1Ebcdic code 24 1
Ebcdic code 24 1
 
Complements of numbers
Complements of numbersComplements of numbers
Complements of numbers
 
Switching techniques
Switching techniquesSwitching techniques
Switching techniques
 
step by step to write a gnome-shell extension
step by step to write a gnome-shell extension step by step to write a gnome-shell extension
step by step to write a gnome-shell extension
 
Relational Data Model Introduction
Relational Data Model IntroductionRelational Data Model Introduction
Relational Data Model Introduction
 
PPT ON NUMBER SYSTEM
PPT ON NUMBER SYSTEMPPT ON NUMBER SYSTEM
PPT ON NUMBER SYSTEM
 
11 octal number system
11   octal number system11   octal number system
11 octal number system
 

Similar a Introducing to number system

digital-electronics.pptx
digital-electronics.pptxdigital-electronics.pptx
digital-electronics.pptxsulekhasaxena2
 
Conversiones binario decimal/ decimal binario
Conversiones binario decimal/ decimal  binarioConversiones binario decimal/ decimal  binario
Conversiones binario decimal/ decimal binarioaidalyb2
 
Number System | Types of Number System | Binary Number System | Octal Number ...
Number System | Types of Number System | Binary Number System | Octal Number ...Number System | Types of Number System | Binary Number System | Octal Number ...
Number System | Types of Number System | Binary Number System | Octal Number ...Get & Spread Knowledge
 
UKOUG 2019 - SQL features
UKOUG 2019 - SQL featuresUKOUG 2019 - SQL features
UKOUG 2019 - SQL featuresConnor McDonald
 
Convert decimal to binary
Convert decimal to binary Convert decimal to binary
Convert decimal to binary tcc_joemarie
 
Writing Readable Code with Pipes
Writing Readable Code with PipesWriting Readable Code with Pipes
Writing Readable Code with PipesRsquared Academy
 
UNIT - I.pptx
UNIT - I.pptxUNIT - I.pptx
UNIT - I.pptxamudhak10
 
Digital Fundamental Learning for the Students
Digital Fundamental Learning for the StudentsDigital Fundamental Learning for the Students
Digital Fundamental Learning for the Studentsshaival
 
metadatacoreProperties.xmlModel2015-07-13T030104Zthua3267th.docx
metadatacoreProperties.xmlModel2015-07-13T030104Zthua3267th.docxmetadatacoreProperties.xmlModel2015-07-13T030104Zthua3267th.docx
metadatacoreProperties.xmlModel2015-07-13T030104Zthua3267th.docxARIV4
 
Systems of Counting
Systems of CountingSystems of Counting
Systems of Countingadil raja
 
PDT DC015 Chapter 2 Computer System 2017/2018 (d)
PDT DC015 Chapter 2 Computer System 2017/2018 (d)PDT DC015 Chapter 2 Computer System 2017/2018 (d)
PDT DC015 Chapter 2 Computer System 2017/2018 (d)Fizaril Amzari Omar
 
Taller De Conversiones B/D D/B
Taller De Conversiones B/D D/BTaller De Conversiones B/D D/B
Taller De Conversiones B/D D/Bnathy76hnz
 
Taller de conversiones binariodecimal
Taller de conversiones binariodecimalTaller de conversiones binariodecimal
Taller de conversiones binariodecimalJuan D Patiño Torres
 
Taller de conversiones binariodecimal
Taller de conversiones binariodecimalTaller de conversiones binariodecimal
Taller de conversiones binariodecimalDaniela Diaz
 

Similar a Introducing to number system (20)

digital-electronics.pptx
digital-electronics.pptxdigital-electronics.pptx
digital-electronics.pptx
 
DIGITAL ELECTRONICS.pptx
DIGITAL ELECTRONICS.pptxDIGITAL ELECTRONICS.pptx
DIGITAL ELECTRONICS.pptx
 
Conversiones binario decimal/ decimal binario
Conversiones binario decimal/ decimal  binarioConversiones binario decimal/ decimal  binario
Conversiones binario decimal/ decimal binario
 
Number System | Types of Number System | Binary Number System | Octal Number ...
Number System | Types of Number System | Binary Number System | Octal Number ...Number System | Types of Number System | Binary Number System | Octal Number ...
Number System | Types of Number System | Binary Number System | Octal Number ...
 
UKOUG 2019 - SQL features
UKOUG 2019 - SQL featuresUKOUG 2019 - SQL features
UKOUG 2019 - SQL features
 
Convert decimal to binary
Convert decimal to binary Convert decimal to binary
Convert decimal to binary
 
Slideshare
SlideshareSlideshare
Slideshare
 
Writing Readable Code with Pipes
Writing Readable Code with PipesWriting Readable Code with Pipes
Writing Readable Code with Pipes
 
Guia 10
Guia 10Guia 10
Guia 10
 
UNIT - I.pptx
UNIT - I.pptxUNIT - I.pptx
UNIT - I.pptx
 
Digital Fundamental Learning for the Students
Digital Fundamental Learning for the StudentsDigital Fundamental Learning for the Students
Digital Fundamental Learning for the Students
 
metadatacoreProperties.xmlModel2015-07-13T030104Zthua3267th.docx
metadatacoreProperties.xmlModel2015-07-13T030104Zthua3267th.docxmetadatacoreProperties.xmlModel2015-07-13T030104Zthua3267th.docx
metadatacoreProperties.xmlModel2015-07-13T030104Zthua3267th.docx
 
Systems of Counting
Systems of CountingSystems of Counting
Systems of Counting
 
Taller de conversiones
Taller de conversionesTaller de conversiones
Taller de conversiones
 
Bolum1cozumler
Bolum1cozumlerBolum1cozumler
Bolum1cozumler
 
PDT DC015 Chapter 2 Computer System 2017/2018 (d)
PDT DC015 Chapter 2 Computer System 2017/2018 (d)PDT DC015 Chapter 2 Computer System 2017/2018 (d)
PDT DC015 Chapter 2 Computer System 2017/2018 (d)
 
Taller De Conversiones B/D D/B
Taller De Conversiones B/D D/BTaller De Conversiones B/D D/B
Taller De Conversiones B/D D/B
 
Taller de conversiones binariodecimal
Taller de conversiones binariodecimalTaller de conversiones binariodecimal
Taller de conversiones binariodecimal
 
Taller de conversiones binariodecimal
Taller de conversiones binariodecimalTaller de conversiones binariodecimal
Taller de conversiones binariodecimal
 
Taller de conversiones binariodecimal
Taller de conversiones binariodecimalTaller de conversiones binariodecimal
Taller de conversiones binariodecimal
 

Más de tcc_joemarie

Financial projections and budgets
Financial projections and budgetsFinancial projections and budgets
Financial projections and budgetstcc_joemarie
 
Convert Hexadecimal to decimal
Convert Hexadecimal to decimalConvert Hexadecimal to decimal
Convert Hexadecimal to decimaltcc_joemarie
 
Theory of programming
Theory of programmingTheory of programming
Theory of programmingtcc_joemarie
 
Flexible learning environment
Flexible learning environmentFlexible learning environment
Flexible learning environmenttcc_joemarie
 
Digital literacy skills in the 21st century
Digital literacy skills in the 21st centuryDigital literacy skills in the 21st century
Digital literacy skills in the 21st centurytcc_joemarie
 
Online resources, educational sites and portals
Online resources, educational sites and portalsOnline resources, educational sites and portals
Online resources, educational sites and portalstcc_joemarie
 
The four pillars of education
The four pillars of educationThe four pillars of education
The four pillars of educationtcc_joemarie
 
The concept of algorithm
The concept of algorithmThe concept of algorithm
The concept of algorithmtcc_joemarie
 
Professional development
Professional developmentProfessional development
Professional developmenttcc_joemarie
 

Más de tcc_joemarie (11)

Mother board
Mother boardMother board
Mother board
 
Financial projections and budgets
Financial projections and budgetsFinancial projections and budgets
Financial projections and budgets
 
Convert Hexadecimal to decimal
Convert Hexadecimal to decimalConvert Hexadecimal to decimal
Convert Hexadecimal to decimal
 
People media
People media People media
People media
 
Theory of programming
Theory of programmingTheory of programming
Theory of programming
 
Flexible learning environment
Flexible learning environmentFlexible learning environment
Flexible learning environment
 
Digital literacy skills in the 21st century
Digital literacy skills in the 21st centuryDigital literacy skills in the 21st century
Digital literacy skills in the 21st century
 
Online resources, educational sites and portals
Online resources, educational sites and portalsOnline resources, educational sites and portals
Online resources, educational sites and portals
 
The four pillars of education
The four pillars of educationThe four pillars of education
The four pillars of education
 
The concept of algorithm
The concept of algorithmThe concept of algorithm
The concept of algorithm
 
Professional development
Professional developmentProfessional development
Professional development
 

Último

Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 

Último (20)

Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 

Introducing to number system

  • 3. WHAT IS NUMBER SYSTEM? • Computers understand machine language. Every letter, symbol etc. that we write in the instructions given to computer, it gets converted into machine language. • This machine language comprises of numbers. In order to understand the language used by computers and other digital system it is crucial to have a better understanding of number system.
  • 4. • Commonly Used Number system • Consist of 10 Digits (0-9).Base-10 • Example: 107,78,98,2786 Types of Number System Decimal Number System Binary Number System Hexadecimal Number System Octal Number System • Use in Digital Computers • Consist of 2 Digits (0 and 1).Base-2 • Example: 10001,10100 • Consist of 16 Digits (0-9) (A-F) • Base-16 • Example: D1CE,2E6 • Consist of 8 Digits (0-7) • Base-8 • Example: 6675,0453,655
  • 5. The Decimal System (Base) 10 • The word decimal is derived from the Latin root decem(ten) • Base b = 10 • Ten symbols: S = {0,1,2,3,4,5,6,7,8,9} Example:45,452,501,4521 • The symbols in this system are often referred to as decimal digits or just digits.
  • 6. THE BINARY SYSTEM (BASE) 2 • The word binary is derived from the Latin root • bini (double). • Base b = 2. • Ten symbols: S = {0, 1} Binary is a base 2 number system invented by Gottfried Leibniz that is made up of only two numbers: 0 and 1. This number system is the basis for all binary code, which is used to write data such as the instructions that computer processors use, or the digital text you read every day.
  • 8. DECIMAL TO BINARY 72 520 5078 = = = 1001000 1000001000 1001111010110 TEXT TO BINARY HI 1001000 1101001 HELLO WORLD 1101000 1100101 1101100 1101100 1101111 0100000 1110111 1101111 1110010 1101100 1100100 TCCSTFI 1010100 1000011 1000011 1010011 1010100 1000110 1001001 48753 1011111001110001=
  • 10. EVERY GAME YOU PLAY ARE MADE-UP WITH BINARY
  • 11. EVERY SITE YOU VISIT ARE MADE-UP WITH BINARY
  • 13. DECIMAL BINARYTO 2 1 2 10 = 212 / 2 RESULT 106 REMAINDER 0 106 / 53 26 13 6 3 1 2 RESULT 53 REMAINDER 0 / / / / / / 2 RESULT 26 REMAINDER 02 RESULT 13 REMAINDER 2 RESULT 6 REMAINDER 1 1 2 RESULT 3 REMAINDER 0 2 RESULT 1 REMAINDER 1 2 RESULT 0 REMAINDER 1 1 1 0 1 0 1 0 0 2
  • 14. DECIMAL BINARYTO 5 8 6 210 = 5862 / 2 RESULT 2931 REMAINDER 0 1 0 1 1 0 1 1 1 2 2931 / 2 RESULT 1465 REMAINDER 1 1465 / 2 RESULT 732 REMAINDER 1 732 / 2 RESULT 366 REMAINDER 0 366 / 2 RESULT 183 REMAINDER 0 183 / 2 RESULT 91 REMAINDER 1 91 / 2 RESULT 45 REMAINDER 1 45 / 2 RESULT 22 REMAINDER 1 22 / 2 RESULT 11 REMAINDER 0 11 / 2 RESULT 5 REMAINDER 1 5 / 2 RESULT 2 REMAINDER 1 2 / 2 RESULT 1 REMAINDER 0 1 / 2 RESULT 0 REMAINDER 1 0 0 1 1 0
  • 15. CONVERT THE FOLLOWING PROBLEM? DECIMAL BINARYTO 301410 648910 125610 2245 10 = = = =752 10 = 101111000110 2 1100101011001 10011101000 100011000101 1011110000 2 2 2 2 1. 2. 3. 4. 5.
  • 17. THE BINARY TABLE 128 64 32 16 8 4 2 1
  • 18. DECIMALBINARY TO 1 0 1 0 1 2 2 0 2 1 2 2 2 3 2 4 1 X 10 X 21 X 40 X 81 X 16 01234 16 0 4 0 1+ + + + = 21 21 10 = 128 64 32 16 8 4 2 1 THE BINARY TABLE
  • 19. DECIMALBINARY TO 1 0 1 0 1 0 0 1 1 2 2 0 2 1 2 2 2 3 2 4 1 X 11 X 20 X 40X 81 X 16 01234 339 10 = 128 64 32 16 8 4 2 1 THE BINARY TABLE 2 5 2 6 2 7 2 8 0 X 32 5 1 X 64 6 0X 128 7 1 X 256 8 + + + + + + + +256 0 64 0 16 0 0 2 1 = 339
  • 20. DECIMALBINARY TO 1 0 1 1 0 1 0 1 0 2 10 = 1248163264128256 256 64+ + 2+ =32 + 8 362 362
  • 21. CONVERT THE FOLLOWING PROBLEM? DECIMALBINARY TO 10 = = = = = 1001000101001 21. 2. 3. 4. 5. 10111000111100 10011110011101 11000010101001 10101110100101 2 2 2 2 4649 11836 10141 12457 11173 10 10 10 10
  • 22.
  • 23. CONVERT THE FOLLOWING PROBLEM? 10= = = = = 111101110101021. 2. 3. 4. 5. 100101011010 11001010111 11010111010100 1110000101010000 2 2 2 2 7914 2394 1623 13780 57680 10 10 10 10 6. 7. 8. 9. 10. = 1011000010011111 2 45215 10 = 1100011010001102 25414 10 = 1010010111010011 2 42451 10 = 10010011010010100 2 75412 10 = 11010000100111110000 2 854512 10
  • 24. THE HEXADECIMAL SYSTEM (BASE 16) • The word hexadecimal is derived from the Greek root hex (six) and Latin root decem (ten). • Base b = 16. • Ten symbols: S = {0, 1,2,3,4,5,6,7, 8, 9, A, B, C, D, E, F} • Example: 2AF , 3DF4 , 5FAE3 , 8CF09 • The symbols in this system are often referred to • as hexadecimal digits.
  • 25. THE RELATIONSHIP BETWEEN DECIMAL TO HEXADECIMAL 0 1 2 3 4 5 6 7 9 0 1 2 3 4 5 6 7 9 DECIMAL TO HEXADECIMAL 10 11 12 13 14 15 = = = = = = A B C D E F = = = = = = = = =
  • 27. 2 3 E HEXADECIMAL DECIMAL =16 16 0 16 1 16 2 2 X 16 2 + 3 X 16 1 + 14 X 16 0 10 11 12 13 14 15 = = = = = = A B C D E F DH 2 X 256 + 3 X 16 + 14 512 + 48 + 14 574= 574 10 TO
  • 28. HEXADECIMAL DECIMALTO 10 11 12 13 14 15 = = = = = = A B C D E F DH A B 0 9 16 = 16 0 16 1 16 2 16 3 10 X 16 3 + 11 X 16 2 + 0 X 16 1 + 9 X 16 0 10 X 4096 + 11 X 256 + 0 + 9 40960 + 2816 + 0 + 9 43785= 4378510 X 16
  • 29. THE OCTAL SYSTEM (BASE 8) • The word octal is derived from the Latin root octo • (eight). • Base b = 8. {0, 1, 2, 3, 4, 5, 6, 7} Example: {1524 , 576 , 342}
  • 31. HEXADECIMAL OCTALTO A C 16 10 11 12 13 14 15 = = = = = = A B C D E F DH 10 CONVERT TO DECIMAL 12 8 4 2 1 8 4 2 1 1 0 1 0 1 1 0 0 = 001101010 2 5 4 = 2 5 4 2 5 4 8 124 124 124
  • 32. HEXADECIMAL OCTALTO 10 11 12 13 14 15 = = = = = = A B C D E F DH 1 E F 16 8 4 2 1 8 4 2 1 8 4 2 1 100 0 1 1 1 1 1 1 1 0 1 1 1 11 1 1 0100 0 124124124124 7 5 7 = 7 5 7 7 5 78 CONVERT TO DECIMAL 1 14 15