SlideShare a Scribd company logo
1 of 18
Application of Bases
o Decimal Numbers
o Base 10 systems
oexpresses a number as a string of digits in which each
digit’s position indicates the power of 10 by which it is
multiplied.
5,049 = 5· (1,000) + 0· (100) + 4· (10) + 9· (1).
Using exponential notation, this equation can be
rewritten as
5,049 = 5·103 + 0·102 + 4·101 + 9·100.
a sum of products of the form
d ·10n
Bases
o Binary Numbers
o base 2 notation, or binary notation,
osignals used in modern electronics are always in one of
only two states.
od ·2n,
owhere each n is an integer and each d is one of the
binary digits (or bits) 0 or 1.
27 = 16 + 8 + 2 + 1
= 1·24 + 1·23 + 0·22 + 1·21 + 1·20.
=110112
Conversion
o Converting a Binary to a Decimal Number
– Represent 1101012 in decimal notation.
1101012 = 1·25 + 1·24 + 0·23 + 1·22 + 0·21 + 1·20
= 32 + 16 + 4 + 1
= 5310
o Converting a Decimal to a Binary Number
o Represent 209 in binary notation.
20910 = 128 + a smaller number.
20910 = 128 + 64 + a smaller number.
=128 + 64 + 16 + 1
= 1·27 + 1·26 + 0·25 + 1·24 + 0·23 + 0·22 + 0·21 + 1·20.
Binary Addition
o Add 11012 and 1112 using binary notation.
12
+ 12
102
1 1 0 12
+ 1 1 12
12
+ 12
+ 12
112
Subtraction in Binary Notation
o Add 11012 and 1112 using binary notation.
102
- 12
12
1 1 0 0 02
- 1 01 12
1 1 0 1
Two’s Complements and the Computer Representation
of Negative Integers
o Given a positive integer a, the two’s
complement of a relative to a fixed bit length
n is the n-bit binary representation of 2n − a.
o (28 − 27)10 = (256 − 27)10 = 22910 = (128 + 64 + 32 +
4 + 1)10 = 111001012
1. 28 − a = [(28 − 1) − a] + 1.
2. The binary representation of 28 − 1 is 111111112.
3. Subtracting an 8-bit binary number a from 111111112
just switches all the 0’s in a to 1’s and all the 1’s to 0’s.
(The resulting number is called the one’s complement
of the given number.)
Two’s Complements and the Computer Representation
of Negative Integers
o To find the 8-bit two’s complement of a
positive integer a that is at most 255:
1. Write the 8-bit binary representation for a.
2. Flip the bits (that is, switch all the 1’s to 0’s and
all the 0’s to 1’s).
3. Add 1 in binary notation.
Two’s Complements and the Computer Representation
of Negative Integers
o Find the 8-bit two’s complement of 19.
1. Write the 8-bit binary representation for 19,
2. Switch all the 0’s to 1’s and all the 1’s to 0’s, and add
1.
3. 1910 = (16 + 2 + 1)10 = 000100112
4. Flip the bits→11101100
5. add→1 11101101
o To check this result, note that
111011012= (128 + 64 + 32 + 8 + 4 + 1)10 = 23710 = (256 −
19)10
= (28 − 19)10, which is the two’s complement of 19.
Two’s Complements and the Computer Representation
of Negative Integers
o To add two integers in the range −128 through 127
whose sum is also in the range −128 through 127:
o Convert both integers to their 8-bit representations
(representing negative integers by using the two’s
complements of their absolute values).
o Add the resulting integers using ordinary binary
addition.
o Truncate any leading 1 (overflow) that occurs in the
28th position.
o Convert the result back to decimal form (interpreting 8-
bit integers with leading 0’s as nonnegative and 8-bit
integers with leading 1’s as negative).
Two’s Complements and the Computer Representation
of Negative Integers
o compute 72 − 54.
o =72+(-54)
Hexadecimal Notation
o Hexadecimal notation is also called base 16
notation.
o Any integer can be uniquely expressed as a sum of
numbers of the form
o d ·16n,
owhere each n is a nonnegative integer and each d is
one of the integers from 0 to 15.
oThe integers 10 through 15 are represented by the
symbols A, B, C, D, E, and F.
Hexadecimal Notation
Converting from Hexadecimal to
Decimal Notation
o Convert 3CF16 to decimal notation.
Converting from Hexadecimal to Binary
Notation
o To convert an integer from hexadecimal to
binary notation:
1. Write each hexadecimal digit of the integer in 4-
bit binary notation.
2. Juxtapose the results.
Converting from Hexadecimal to Binary
Notation
o Convert B09F16 to binary notation.
B16 = 1110 = 10112, 016 = 010 = 00002, 916 = 910 =
10012, and F16 = 1510 =
11112. Consequently,
B 0 9 F
1011 0000 1001 1111
and the answer is 10110000100111112.
Converting from Binary to Hexadecimal
Notation
o To convert an integer from binary to
hexadecimal notation:
1. Group the digits of the binary number into sets
of four, starting from the right and adding
leading zeros as needed.
2. Convert the binary numbers in each set of four
into hexadecimal digits. Juxtapose those
hexadecimal digits
Converting from Binary to Hexadecimal
Notation
o Convert 1001101101010012 to hexadecimal
notation.
0100 1101 1010 1001.
4 D A 9
Then juxtapose the hexadecimal digits.
4DA916

More Related Content

What's hot

ALGEBRAIC-EXPRESSIONS-AND-EQUATIONS ART grade 6.pptx
ALGEBRAIC-EXPRESSIONS-AND-EQUATIONS ART grade 6.pptxALGEBRAIC-EXPRESSIONS-AND-EQUATIONS ART grade 6.pptx
ALGEBRAIC-EXPRESSIONS-AND-EQUATIONS ART grade 6.pptx
ARTURODELROSARIO1
 
Adding Subtracting Integers
Adding Subtracting IntegersAdding Subtracting Integers
Adding Subtracting Integers
Mr. M
 
Ratio and proportion
Ratio and proportion Ratio and proportion
Ratio and proportion
Glenda Dizon
 

What's hot (20)

MATH Lesson Plan sample for demo teaching
MATH Lesson Plan sample for demo teaching MATH Lesson Plan sample for demo teaching
MATH Lesson Plan sample for demo teaching
 
Maths project work - Arithmetic Sequences
Maths project work - Arithmetic SequencesMaths project work - Arithmetic Sequences
Maths project work - Arithmetic Sequences
 
9-1 Geometric Sequences.ppt
9-1 Geometric Sequences.ppt9-1 Geometric Sequences.ppt
9-1 Geometric Sequences.ppt
 
Applications of system of linear equations.ppt
Applications of system of linear equations.pptApplications of system of linear equations.ppt
Applications of system of linear equations.ppt
 
Factoring quadratic trinomial
Factoring quadratic trinomialFactoring quadratic trinomial
Factoring quadratic trinomial
 
Number theory
Number theoryNumber theory
Number theory
 
Algebraic expressions and terms
Algebraic expressions and termsAlgebraic expressions and terms
Algebraic expressions and terms
 
Polynomial Lesson Plan
Polynomial Lesson PlanPolynomial Lesson Plan
Polynomial Lesson Plan
 
ALGEBRAIC-EXPRESSIONS-AND-EQUATIONS ART grade 6.pptx
ALGEBRAIC-EXPRESSIONS-AND-EQUATIONS ART grade 6.pptxALGEBRAIC-EXPRESSIONS-AND-EQUATIONS ART grade 6.pptx
ALGEBRAIC-EXPRESSIONS-AND-EQUATIONS ART grade 6.pptx
 
Mathematics 8 Linear Functions
Mathematics 8 Linear FunctionsMathematics 8 Linear Functions
Mathematics 8 Linear Functions
 
Adding Subtracting Integers
Adding Subtracting IntegersAdding Subtracting Integers
Adding Subtracting Integers
 
Integers ppt
Integers pptIntegers ppt
Integers ppt
 
Polynomials
PolynomialsPolynomials
Polynomials
 
Binary operations
 Binary operations Binary operations
Binary operations
 
Ratio and proportion
Ratio and proportion Ratio and proportion
Ratio and proportion
 
Sum and difference of two squares
Sum and difference of two squaresSum and difference of two squares
Sum and difference of two squares
 
Multiplying Polynomials: Two Binomials
Multiplying Polynomials: Two BinomialsMultiplying Polynomials: Two Binomials
Multiplying Polynomials: Two Binomials
 
Perfect numbers
Perfect numbersPerfect numbers
Perfect numbers
 
Subtracting with Regrouping.ppt
Subtracting with Regrouping.pptSubtracting with Regrouping.ppt
Subtracting with Regrouping.ppt
 
Simple interest-final
Simple interest-finalSimple interest-final
Simple interest-final
 

Viewers also liked (11)

Contribuciones especiales
Contribuciones especialesContribuciones especiales
Contribuciones especiales
 
Laws in disceret
Laws in disceretLaws in disceret
Laws in disceret
 
Performance #4 network
Performance #4  networkPerformance #4  network
Performance #4 network
 
Hashing
HashingHashing
Hashing
 
Performence #2 gpu
Performence #2  gpuPerformence #2  gpu
Performence #2 gpu
 
Consejo comunal
Consejo comunalConsejo comunal
Consejo comunal
 
Bosque seco
Bosque secoBosque seco
Bosque seco
 
Clone Detection for Graph-Based Model Transformation Languages
Clone Detection for Graph-Based Model Transformation LanguagesClone Detection for Graph-Based Model Transformation Languages
Clone Detection for Graph-Based Model Transformation Languages
 
Peer Editing Technique for Teaching Writing
Peer Editing Technique for Teaching WritingPeer Editing Technique for Teaching Writing
Peer Editing Technique for Teaching Writing
 
New York times Paywall case study
New York times Paywall case study New York times Paywall case study
New York times Paywall case study
 
Багш ажлын байрандаа тасралтгүй хөгжих нь
Багш ажлын байрандаа тасралтгүй хөгжих ньБагш ажлын байрандаа тасралтгүй хөгжих нь
Багш ажлын байрандаа тасралтгүй хөгжих нь
 

Similar to Application of bases

Lesson 1 basic theory of information
Lesson 1   basic theory of informationLesson 1   basic theory of information
Lesson 1 basic theory of information
Roma Kimberly Erolin
 
Lesson 1 basic theory of information
Lesson 1   basic theory of informationLesson 1   basic theory of information
Lesson 1 basic theory of information
Roma Kimberly Erolin
 

Similar to Application of bases (20)

Okkkkk
OkkkkkOkkkkk
Okkkkk
 
Number_Systems (2).ppt
Number_Systems (2).pptNumber_Systems (2).ppt
Number_Systems (2).ppt
 
Chapter two FHI.pptx
Chapter two FHI.pptxChapter two FHI.pptx
Chapter two FHI.pptx
 
Lesson 1 basic theory of information
Lesson 1   basic theory of informationLesson 1   basic theory of information
Lesson 1 basic theory of information
 
Lesson 1 basic theory of information
Lesson 1   basic theory of informationLesson 1   basic theory of information
Lesson 1 basic theory of information
 
Number system by ammar nawab
Number system by ammar nawabNumber system by ammar nawab
Number system by ammar nawab
 
Data Representation
Data RepresentationData Representation
Data Representation
 
Data Representation
Data RepresentationData Representation
Data Representation
 
Number system
Number systemNumber system
Number system
 
Chapter 1 digital systems and binary numbers
Chapter 1 digital systems and binary numbersChapter 1 digital systems and binary numbers
Chapter 1 digital systems and binary numbers
 
08. Numeral Systems
08. Numeral Systems08. Numeral Systems
08. Numeral Systems
 
Logic Design - Chapter 1: Number Systems and Codes
Logic Design - Chapter 1: Number Systems and CodesLogic Design - Chapter 1: Number Systems and Codes
Logic Design - Chapter 1: Number Systems and Codes
 
Number Systems
Number SystemsNumber Systems
Number Systems
 
Video lectures
Video lecturesVideo lectures
Video lectures
 
Mba ebooks
Mba ebooksMba ebooks
Mba ebooks
 
Number system
Number systemNumber system
Number system
 
CDS Fundamentals of digital communication system UNIT 1 AND 2.pdf
CDS Fundamentals of digital communication system UNIT 1 AND 2.pdfCDS Fundamentals of digital communication system UNIT 1 AND 2.pdf
CDS Fundamentals of digital communication system UNIT 1 AND 2.pdf
 
numbers_systems.ppt
numbers_systems.pptnumbers_systems.ppt
numbers_systems.ppt
 
numbers_systems.ppt
numbers_systems.pptnumbers_systems.ppt
numbers_systems.ppt
 
numbers_systems.ppt
numbers_systems.pptnumbers_systems.ppt
numbers_systems.ppt
 

More from Abdur Rehman (17)

Financial accounting
Financial accountingFinancial accounting
Financial accounting
 
Dscrete structure
Dscrete  structureDscrete  structure
Dscrete structure
 
Valid & invalid arguments
Valid & invalid argumentsValid & invalid arguments
Valid & invalid arguments
 
Sets
SetsSets
Sets
 
Sequences
SequencesSequences
Sequences
 
Recursion
RecursionRecursion
Recursion
 
Queue
QueueQueue
Queue
 
Quantification
QuantificationQuantification
Quantification
 
Proving existential statements
Proving existential statementsProving existential statements
Proving existential statements
 
Method of direct proof
Method of direct proofMethod of direct proof
Method of direct proof
 
Proofs by contraposition
Proofs by contrapositionProofs by contraposition
Proofs by contraposition
 
Converse, contrapositive, inverse
Converse, contrapositive, inverseConverse, contrapositive, inverse
Converse, contrapositive, inverse
 
Constructing circuits for boolean expressions(gate)
Constructing circuits for boolean expressions(gate)Constructing circuits for boolean expressions(gate)
Constructing circuits for boolean expressions(gate)
 
Truth table
Truth tableTruth table
Truth table
 
Intro to disceret structure
Intro to disceret structureIntro to disceret structure
Intro to disceret structure
 
Dst lec3
Dst lec3Dst lec3
Dst lec3
 
logic, preposition etc
logic, preposition etclogic, preposition etc
logic, preposition etc
 

Recently uploaded

QUATER-1-PE-HEALTH-LC2- this is just a sample of unpacked lesson
QUATER-1-PE-HEALTH-LC2- this is just a sample of unpacked lessonQUATER-1-PE-HEALTH-LC2- this is just a sample of unpacked lesson
QUATER-1-PE-HEALTH-LC2- this is just a sample of unpacked lesson
httgc7rh9c
 

Recently uploaded (20)

Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17
 
Model Attribute _rec_name in the Odoo 17
Model Attribute _rec_name in the Odoo 17Model Attribute _rec_name in the Odoo 17
Model Attribute _rec_name in the Odoo 17
 
What is 3 Way Matching Process in Odoo 17.pptx
What is 3 Way Matching Process in Odoo 17.pptxWhat is 3 Way Matching Process in Odoo 17.pptx
What is 3 Way Matching Process in Odoo 17.pptx
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
 
How to Add a Tool Tip to a Field in Odoo 17
How to Add a Tool Tip to a Field in Odoo 17How to Add a Tool Tip to a Field in Odoo 17
How to Add a Tool Tip to a Field in Odoo 17
 
Our Environment Class 10 Science Notes pdf
Our Environment Class 10 Science Notes pdfOur Environment Class 10 Science Notes pdf
Our Environment Class 10 Science Notes pdf
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxCOMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
 
How to Manage Call for Tendor in Odoo 17
How to Manage Call for Tendor in Odoo 17How to Manage Call for Tendor in Odoo 17
How to Manage Call for Tendor in Odoo 17
 
Economic Importance Of Fungi In Food Additives
Economic Importance Of Fungi In Food AdditivesEconomic Importance Of Fungi In Food Additives
Economic Importance Of Fungi In Food Additives
 
OS-operating systems- ch05 (CPU Scheduling) ...
OS-operating systems- ch05 (CPU Scheduling) ...OS-operating systems- ch05 (CPU Scheduling) ...
OS-operating systems- ch05 (CPU Scheduling) ...
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
QUATER-1-PE-HEALTH-LC2- this is just a sample of unpacked lesson
QUATER-1-PE-HEALTH-LC2- this is just a sample of unpacked lessonQUATER-1-PE-HEALTH-LC2- this is just a sample of unpacked lesson
QUATER-1-PE-HEALTH-LC2- this is just a sample of unpacked lesson
 
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
 
FICTIONAL SALESMAN/SALESMAN SNSW 2024.pdf
FICTIONAL SALESMAN/SALESMAN SNSW 2024.pdfFICTIONAL SALESMAN/SALESMAN SNSW 2024.pdf
FICTIONAL SALESMAN/SALESMAN SNSW 2024.pdf
 
Introduction to TechSoup’s Digital Marketing Services and Use Cases
Introduction to TechSoup’s Digital Marketing  Services and Use CasesIntroduction to TechSoup’s Digital Marketing  Services and Use Cases
Introduction to TechSoup’s Digital Marketing Services and Use Cases
 

Application of bases

  • 1.
  • 2. Application of Bases o Decimal Numbers o Base 10 systems oexpresses a number as a string of digits in which each digit’s position indicates the power of 10 by which it is multiplied. 5,049 = 5· (1,000) + 0· (100) + 4· (10) + 9· (1). Using exponential notation, this equation can be rewritten as 5,049 = 5·103 + 0·102 + 4·101 + 9·100. a sum of products of the form d ·10n
  • 3. Bases o Binary Numbers o base 2 notation, or binary notation, osignals used in modern electronics are always in one of only two states. od ·2n, owhere each n is an integer and each d is one of the binary digits (or bits) 0 or 1. 27 = 16 + 8 + 2 + 1 = 1·24 + 1·23 + 0·22 + 1·21 + 1·20. =110112
  • 4. Conversion o Converting a Binary to a Decimal Number – Represent 1101012 in decimal notation. 1101012 = 1·25 + 1·24 + 0·23 + 1·22 + 0·21 + 1·20 = 32 + 16 + 4 + 1 = 5310 o Converting a Decimal to a Binary Number o Represent 209 in binary notation. 20910 = 128 + a smaller number. 20910 = 128 + 64 + a smaller number. =128 + 64 + 16 + 1 = 1·27 + 1·26 + 0·25 + 1·24 + 0·23 + 0·22 + 0·21 + 1·20.
  • 5. Binary Addition o Add 11012 and 1112 using binary notation. 12 + 12 102 1 1 0 12 + 1 1 12 12 + 12 + 12 112
  • 6. Subtraction in Binary Notation o Add 11012 and 1112 using binary notation. 102 - 12 12 1 1 0 0 02 - 1 01 12 1 1 0 1
  • 7. Two’s Complements and the Computer Representation of Negative Integers o Given a positive integer a, the two’s complement of a relative to a fixed bit length n is the n-bit binary representation of 2n − a. o (28 − 27)10 = (256 − 27)10 = 22910 = (128 + 64 + 32 + 4 + 1)10 = 111001012 1. 28 − a = [(28 − 1) − a] + 1. 2. The binary representation of 28 − 1 is 111111112. 3. Subtracting an 8-bit binary number a from 111111112 just switches all the 0’s in a to 1’s and all the 1’s to 0’s. (The resulting number is called the one’s complement of the given number.)
  • 8. Two’s Complements and the Computer Representation of Negative Integers o To find the 8-bit two’s complement of a positive integer a that is at most 255: 1. Write the 8-bit binary representation for a. 2. Flip the bits (that is, switch all the 1’s to 0’s and all the 0’s to 1’s). 3. Add 1 in binary notation.
  • 9. Two’s Complements and the Computer Representation of Negative Integers o Find the 8-bit two’s complement of 19. 1. Write the 8-bit binary representation for 19, 2. Switch all the 0’s to 1’s and all the 1’s to 0’s, and add 1. 3. 1910 = (16 + 2 + 1)10 = 000100112 4. Flip the bits→11101100 5. add→1 11101101 o To check this result, note that 111011012= (128 + 64 + 32 + 8 + 4 + 1)10 = 23710 = (256 − 19)10 = (28 − 19)10, which is the two’s complement of 19.
  • 10. Two’s Complements and the Computer Representation of Negative Integers o To add two integers in the range −128 through 127 whose sum is also in the range −128 through 127: o Convert both integers to their 8-bit representations (representing negative integers by using the two’s complements of their absolute values). o Add the resulting integers using ordinary binary addition. o Truncate any leading 1 (overflow) that occurs in the 28th position. o Convert the result back to decimal form (interpreting 8- bit integers with leading 0’s as nonnegative and 8-bit integers with leading 1’s as negative).
  • 11. Two’s Complements and the Computer Representation of Negative Integers o compute 72 − 54. o =72+(-54)
  • 12. Hexadecimal Notation o Hexadecimal notation is also called base 16 notation. o Any integer can be uniquely expressed as a sum of numbers of the form o d ·16n, owhere each n is a nonnegative integer and each d is one of the integers from 0 to 15. oThe integers 10 through 15 are represented by the symbols A, B, C, D, E, and F.
  • 14. Converting from Hexadecimal to Decimal Notation o Convert 3CF16 to decimal notation.
  • 15. Converting from Hexadecimal to Binary Notation o To convert an integer from hexadecimal to binary notation: 1. Write each hexadecimal digit of the integer in 4- bit binary notation. 2. Juxtapose the results.
  • 16. Converting from Hexadecimal to Binary Notation o Convert B09F16 to binary notation. B16 = 1110 = 10112, 016 = 010 = 00002, 916 = 910 = 10012, and F16 = 1510 = 11112. Consequently, B 0 9 F 1011 0000 1001 1111 and the answer is 10110000100111112.
  • 17. Converting from Binary to Hexadecimal Notation o To convert an integer from binary to hexadecimal notation: 1. Group the digits of the binary number into sets of four, starting from the right and adding leading zeros as needed. 2. Convert the binary numbers in each set of four into hexadecimal digits. Juxtapose those hexadecimal digits
  • 18. Converting from Binary to Hexadecimal Notation o Convert 1001101101010012 to hexadecimal notation. 0100 1101 1010 1001. 4 D A 9 Then juxtapose the hexadecimal digits. 4DA916