SlideShare a Scribd company logo
Dr. G.S. Virdi
Ex-Professor ECE DEPT. GGS- CMT Kharar Mohali
Former Director grade scientist
CSIR- central electronics engineering Research institute Pilani-
333931 India
1
UNIT-1- EE – Binary Arithmetic
2
Thought of the Day
G.S.Virdi
G.S.Virdi
3
Binary Arithmetic Operations
G.S.Virdi
G.S.Virdi
Binary Arithmetic Operations
1. Binary Addition
2. Binary Subtraction
1. 1’s Complement Subtraction
2. 2’s Complement Subtraction
3. Binary Multiplication
4. Binary Division
G.S.Virdi
G.S.Virdi
5
Binary Addition
6
Binary Addition
G.S.Virdi
G.S.Virdi
7
Binary Addition
G.S.Virdi
G.S.Virdi
8
Binary Addition
G.S.Virdi
G.S.Virdi
9
Binary Addition
G.S.Virdi
G.S.Virdi
10
Binary Addition
G.S.Virdi
G.S.Virdi
11
Binary Addition
G.S.Virdi
G.S.Virdi
12
Binary Addition
G.S.Virdi
G.S.Virdi
13
Binary Addition
G.S.Virdi
G.S.Virdi
Decimal Addition Explanation
1 1 1
3 7 5 8
+ 4 6 5 7
8 4 1 5
What just happened?
1 1 1 (carry)
3 7 5 8
+ 4 6 5 7
8 14 11 15 (sum)
- 10 10 10 (subtract
the base)
8 4 1 5
So when the sum of a column is equal to or greater than the base, we
subtract the base from the sum, record the difference, and carry one
to the next column to the left.
Decimal Addition Explanation
1 1 1
3 7 5 8
+ 4 6 5 7
8 4 1 5
What just happened?
1 1 1 (carry)
3 7 5 8
+ 4 6 5 7
8 14 11 15 (sum)
- 10 10 10 (subtract the
base)
8 4 1 5
So when the sum of a column is equal to or greater than the base,
we subtract the base from the sum, record the difference, and
carry one to the next column to the left.
G.S.Virdi
G.S.Virdi
Binary Addition Rules
Rules:
 0 + 0 = 0
 0 + 1 = 1 (just like in decimal)
 1 + 0 = 1
 1 + 1 = 210
= 102 = 0 with 1 to carry
 1 + 1 + 1 = 310
= 112 = 1 with 1 to carry
17
Binary Addition
Col 7) Bring down the carried 1,Write 1
G.S.Virdi
G.S.Virdi
18
Binary Addition Verification
G.S.Virdi
G.S.Virdi
19
Binary Addition Verification
G.S.Virdi
G.S.Virdi
20
BCD Addition
G.S.Virdi
G.S.Virdi
21
Binary Subtraction
22
Binary Subtraction
G.S.Virdi
G.S.Virdi
23
Binary Subtraction
G.S.Virdi
G.S.Virdi
24
Binary Subtraction
G.S.Virdi
G.S.Virdi
25
Binary Subtract Rules
G.S.Virdi
G.S.Virdi
26
Binary Subtraction
G.S.Virdi
G.S.Virdi
27
Binary Subtraction
G.S.Virdi
G.S.Virdi
28
Decimal Subtraction Explanation
G.S.Virdi
G.S.Virdi
29
Binary Subtraction Explanation
G.S.Virdi
G.S.Virdi
Binary Subtraction
Example
1 1 0 0 1 1
- 1 1 1 0 0
Example : Subtract
binary 11100 from 110011
2
0 0 2
1
2
1
1
0
1
Col 1) Subtract 1 – 0 = 1
. Col 5) Try to subtract 0 – 1  can’t
Must borrow from next column.
Col 4) Subtract 1 – 1 = 0
Col 3) Try to subtract 0 – 1  can’t
Must borrow 2 from next column.But next column is
0 so must go to column after next to borrow.
the borrowed 2 to the 0 on the right. Now
you can borrow from this column
(leaving 1 remaining).
Col 2) Subtract 1 – 0 = 1
Add the borrowed 2 to the original 0.
Then subtract 2 – 1 = 1
1
Add the borrowed 2 to the remaining 0.
Then subtract 2 – 1 = 1
Col 6) Remaining leading 0 can be ignored.
G.S.Virdi
G.S.Virdi
Binary Subtraction
Verification
1 1 0 0 1 1
- 1 1 1 0 0
Verification
1100112  5110
- 111002 - 2810
2310
64 32 16 8 4 2 1
1 0 1 1 1
= 16 + 4 + 2 + 1
= 2310
1
1
0
1 1
Subtract binary
11100 from 110011:
G.S.Virdi
G.S.Virdi
Decimal Addition Explanation
1 1 1
3 7 5 8
+ 4 6 5 7
8 4 1 5
What just happened?
1 1 1 (carry)
3 7 5 8
+ 4 6 5 7
8 14 11 15 (sum)
- 10 10 10 (subtract the base)
8 4 1 5
So when the sum of a column is equal to or greater than the base,
we subtract the base from the sum, record the difference, and
carry one to the next column to the left.
G.S.Virdi
G.S.Virdi
Binary Subtraction Example
1 0 1 0 0 1
- 1 0 1 0 0
Example 2: Subtract
binary 10100 from
101001
2
0 0 2
1
1
0
1 0
Verification
1010012  4110
- 101002 - 2010
2110
64 32 16 8 4 2 1
1 0 1 0 1
= 16 + 4 + 1
= 2110
G.S.Virdi
G.S.Virdi
Binary Subtraction Example 2
1 0 1 0 0 1
- 1 0 1 0 0
Example 2: Subtract
binary 10100 from
101001
2
0 0 2
1
1
0
1 0
Verification
1010012  4110
- 101002 - 2010
2110
64 32 16 8 4 2 1
1 0 1 0 1
= 16 + 4 + 1
= 2110
G.S.Virdi
G.S.Virdi
35
Binary Multiplication
Binary Multiplication
 Multiplication can’t be that hard!
 It’s just repeated addition
 If we have adders, we can
 do multiplication also
 Remember that the AND operation is equivalent to multiplication
on two bits: G.S.Virdi
G.S.Virdi
a b ab
0 0 0
0 1 0
1 0 0
1 1 1
a b a
b
0 0 0
0 1 0
1 0 0
1 1 1
37
Rules of Binary Multiplication
G.S.Virdi
G.S.Virdi
38
Binary multiplication example
G.S.Virdi
G.S.Virdi
G.S.Virdi
G.S.Virdi
Signed Multiplication
G.S.Virdi
G.S.Virdi
Obtaining complimentary of Binary
41
Obtaining 2s complimentary number
of Binary
G.S.Virdi
G.S.Virdi
G.S.Virdi
G.S.Virdi
Binary Multiplication
G.S.Virdi
G.S.Virdi
Binary Multiplication
44
Binary Multiplication
G.S.Virdi
G.S.Virdi
45
Binary Multiplication
G.S.Virdi
G.S.Virdi
46
Binary Multiplication
G.S.Virdi
G.S.Virdi
Signed Multiplication
1 1 1 1 1 1 1 1 (-1)10
x 0 0 0 1 (+1)10
1 1 1 1 1 1 1 1
0 0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0
1 1 1 1 1 1 1 1 (-1)10

Sign
extended
G.S.Virdi
G.S.Virdi
48
Binary Division
49
Binary Division
G.S.Virdi
G.S.Virdi
50
G.S.Virdi
G.S.Virdi
51
Binary Division
G.S.Virdi
G.S.Virdi
52
Binary Division
G.S.Virdi
G.S.Virdi
53
Binary Division
G.S.Virdi
G.S.Virdi
G.S.Virdi
G.S.Virdi
Binary Division
55
G.S.Virdi
G.S.Virdi
G.S.Virdi
G.S.Virdi
Binary Division
57
Binary Division
G.S.Virdi
G.S.Virdi
58
Binary Division
G.S.Virdi
G.S.Virdi
59
Binary Division
G.S.Virdi
G.S.Virdi
60
Binary Division
61
Binary Division
62
Binary Division
G.S.Virdi
G.S.Virdi
63
Binary Division
G.S.Virdi
G.S.Virdi
64
Binary Division
G.S.Virdi
G.S.Virdi
65
Binary Division
G.S.Virdi
G.S.Virdi
66
Binary Division
G.S.Virdi
G.S.Virdi
0 0 0 0 1 1 1 1
Division of Unsigned Binary
Integers
1 0 1
1
0 0 0 0 1 1 0
1
1 0 0 1 0 0 1
1
1 0 1
1
0 0 1 1 1 0
1 0 1 1
1 0 1 1
1 0 0
Quotient
Dividend
Remainder
Partial
Remainder 1
Divisor
Partial
Remainder 2
DiviQ:de 1 0 0 1 0 0 1 1 by 1
0 1 1
Quotient = 1 1 0 1
Remainder = 1 0 0
G.S.Virdi
G.S.Virdi
0 0 0 0 1 1 1 1
Division of Unsigned Binary
Integers
1 0 1 1
0 0 0 0 1 1 0
1
1 0 0 1 0 0 1
1
1 0 1 1
0 0 1 1 1 0
1 0 1 1
1 0 1 1
1 0 0
Quotient
Dividend
Remainder
Partial
Remainder 1
Divisor
Partial
Remainder 2
Divide Q: 1 0 0 1 0 0 1 1 by 1 0 1 1
Quotient = 1 1 0 1
Remainder = 1 0 0
G.S.Virdi
G.S.Virdi
UNIT-1
69
G.S.Virdi
G.S.Virdi
Binary Arithmetic Operation

More Related Content

More from GS Virdi (10)

Mastering Boolean Algebra for Digital Logic: Laws and Design Fundamentals
Mastering Boolean Algebra for Digital Logic: Laws and Design FundamentalsMastering Boolean Algebra for Digital Logic: Laws and Design Fundamentals
Mastering Boolean Algebra for Digital Logic: Laws and Design Fundamentals
GS Virdi
 
Introduction to Sequential Circuits: Flip-Flops, Latches, and State Machines
Introduction to Sequential Circuits: Flip-Flops, Latches, and State MachinesIntroduction to Sequential Circuits: Flip-Flops, Latches, and State Machines
Introduction to Sequential Circuits: Flip-Flops, Latches, and State Machines
GS Virdi
 
Simplifying Logic Functions with Boolean Algebra: A Step-by-Step Guide
Simplifying Logic Functions with Boolean Algebra: A Step-by-Step GuideSimplifying Logic Functions with Boolean Algebra: A Step-by-Step Guide
Simplifying Logic Functions with Boolean Algebra: A Step-by-Step Guide
GS Virdi
 
Introduction to Karnaugh Maps (K-Maps) for Simplifying Boolean Expressions
Introduction to Karnaugh Maps (K-Maps) for Simplifying Boolean ExpressionsIntroduction to Karnaugh Maps (K-Maps) for Simplifying Boolean Expressions
Introduction to Karnaugh Maps (K-Maps) for Simplifying Boolean Expressions
GS Virdi
 
Digital Electronics - Boolean Algebra (Module 2) - Dr. G.S. Virdi
Digital Electronics - Boolean Algebra (Module 2) - Dr. G.S. VirdiDigital Electronics - Boolean Algebra (Module 2) - Dr. G.S. Virdi
Digital Electronics - Boolean Algebra (Module 2) - Dr. G.S. Virdi
GS Virdi
 
Multiplexers & Demultiplexers: A Complete Guide with Applications
Multiplexers & Demultiplexers: A Complete Guide with ApplicationsMultiplexers & Demultiplexers: A Complete Guide with Applications
Multiplexers & Demultiplexers: A Complete Guide with Applications
GS Virdi
 
Digital Electronics: Fundamentals of Combinational Circuits
Digital Electronics: Fundamentals of Combinational CircuitsDigital Electronics: Fundamentals of Combinational Circuits
Digital Electronics: Fundamentals of Combinational Circuits
GS Virdi
 
Digital Electronics: Introduction to Number Systems and Digital Concepts
Digital Electronics: Introduction to Number Systems and Digital ConceptsDigital Electronics: Introduction to Number Systems and Digital Concepts
Digital Electronics: Introduction to Number Systems and Digital Concepts
GS Virdi
 
Semiconductor devices
Semiconductor devicesSemiconductor devices
Semiconductor devices
GS Virdi
 
Importance of electronics
Importance of electronicsImportance of electronics
Importance of electronics
GS Virdi
 
Mastering Boolean Algebra for Digital Logic: Laws and Design Fundamentals
Mastering Boolean Algebra for Digital Logic: Laws and Design FundamentalsMastering Boolean Algebra for Digital Logic: Laws and Design Fundamentals
Mastering Boolean Algebra for Digital Logic: Laws and Design Fundamentals
GS Virdi
 
Introduction to Sequential Circuits: Flip-Flops, Latches, and State Machines
Introduction to Sequential Circuits: Flip-Flops, Latches, and State MachinesIntroduction to Sequential Circuits: Flip-Flops, Latches, and State Machines
Introduction to Sequential Circuits: Flip-Flops, Latches, and State Machines
GS Virdi
 
Simplifying Logic Functions with Boolean Algebra: A Step-by-Step Guide
Simplifying Logic Functions with Boolean Algebra: A Step-by-Step GuideSimplifying Logic Functions with Boolean Algebra: A Step-by-Step Guide
Simplifying Logic Functions with Boolean Algebra: A Step-by-Step Guide
GS Virdi
 
Introduction to Karnaugh Maps (K-Maps) for Simplifying Boolean Expressions
Introduction to Karnaugh Maps (K-Maps) for Simplifying Boolean ExpressionsIntroduction to Karnaugh Maps (K-Maps) for Simplifying Boolean Expressions
Introduction to Karnaugh Maps (K-Maps) for Simplifying Boolean Expressions
GS Virdi
 
Digital Electronics - Boolean Algebra (Module 2) - Dr. G.S. Virdi
Digital Electronics - Boolean Algebra (Module 2) - Dr. G.S. VirdiDigital Electronics - Boolean Algebra (Module 2) - Dr. G.S. Virdi
Digital Electronics - Boolean Algebra (Module 2) - Dr. G.S. Virdi
GS Virdi
 
Multiplexers & Demultiplexers: A Complete Guide with Applications
Multiplexers & Demultiplexers: A Complete Guide with ApplicationsMultiplexers & Demultiplexers: A Complete Guide with Applications
Multiplexers & Demultiplexers: A Complete Guide with Applications
GS Virdi
 
Digital Electronics: Fundamentals of Combinational Circuits
Digital Electronics: Fundamentals of Combinational CircuitsDigital Electronics: Fundamentals of Combinational Circuits
Digital Electronics: Fundamentals of Combinational Circuits
GS Virdi
 
Digital Electronics: Introduction to Number Systems and Digital Concepts
Digital Electronics: Introduction to Number Systems and Digital ConceptsDigital Electronics: Introduction to Number Systems and Digital Concepts
Digital Electronics: Introduction to Number Systems and Digital Concepts
GS Virdi
 
Semiconductor devices
Semiconductor devicesSemiconductor devices
Semiconductor devices
GS Virdi
 
Importance of electronics
Importance of electronicsImportance of electronics
Importance of electronics
GS Virdi
 

Recently uploaded (20)

Best practices for incorporating home-based early care and learning programs ...
Best practices for incorporating home-based early care and learning programs ...Best practices for incorporating home-based early care and learning programs ...
Best practices for incorporating home-based early care and learning programs ...
KatieDukes5
 
TechSoup - Microsoft Discontinuation of Selected Cloud Donated Offers 2025.05...
TechSoup - Microsoft Discontinuation of Selected Cloud Donated Offers 2025.05...TechSoup - Microsoft Discontinuation of Selected Cloud Donated Offers 2025.05...
TechSoup - Microsoft Discontinuation of Selected Cloud Donated Offers 2025.05...
TechSoup
 
How to Configure Subcontracting in Odoo 18 Manufacturing
How to Configure Subcontracting in Odoo 18 ManufacturingHow to Configure Subcontracting in Odoo 18 Manufacturing
How to Configure Subcontracting in Odoo 18 Manufacturing
Celine George
 
Taxonomy and Systematics: Classification and Diversity of Insects.pptx
Taxonomy and Systematics: Classification and Diversity of Insects.pptxTaxonomy and Systematics: Classification and Diversity of Insects.pptx
Taxonomy and Systematics: Classification and Diversity of Insects.pptx
Arshad Shaikh
 
Low Vison introduction from Aligarh Muslim University
Low Vison introduction from Aligarh Muslim UniversityLow Vison introduction from Aligarh Muslim University
Low Vison introduction from Aligarh Muslim University
Aligarh Muslim University, Aligarh, Uttar Pradesh, India
 
Drug Metabolism advanced medicinal chemistry.pptx
Drug Metabolism advanced medicinal chemistry.pptxDrug Metabolism advanced medicinal chemistry.pptx
Drug Metabolism advanced medicinal chemistry.pptx
pharmaworld
 
TechSoup Introduction to Generative AI and Copilot - 2025.05.22.pdf
TechSoup Introduction to Generative AI and Copilot - 2025.05.22.pdfTechSoup Introduction to Generative AI and Copilot - 2025.05.22.pdf
TechSoup Introduction to Generative AI and Copilot - 2025.05.22.pdf
TechSoup
 
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
siemaillard
 
How to Manage Allow Ship Later for Sold Product in odoo Point of Sale
How to Manage Allow Ship Later for Sold Product in odoo Point of SaleHow to Manage Allow Ship Later for Sold Product in odoo Point of Sale
How to Manage Allow Ship Later for Sold Product in odoo Point of Sale
Celine George
 
0b - THE ROMANTIC ERA: FEELINGS AND IDENTITY.pptx
0b - THE ROMANTIC ERA: FEELINGS AND IDENTITY.pptx0b - THE ROMANTIC ERA: FEELINGS AND IDENTITY.pptx
0b - THE ROMANTIC ERA: FEELINGS AND IDENTITY.pptx
Julián Jesús Pérez Fernández
 
QUIZ-O-FORCE PRELIMINARY ANSWER SLIDE.pptx
QUIZ-O-FORCE PRELIMINARY ANSWER SLIDE.pptxQUIZ-O-FORCE PRELIMINARY ANSWER SLIDE.pptx
QUIZ-O-FORCE PRELIMINARY ANSWER SLIDE.pptx
Sourav Kr Podder
 
Unit 1 Tools Beneficial for Monitoring the Debugging Process.pdf
Unit 1 Tools Beneficial for Monitoring the Debugging Process.pdfUnit 1 Tools Beneficial for Monitoring the Debugging Process.pdf
Unit 1 Tools Beneficial for Monitoring the Debugging Process.pdf
ChatanBawankar
 
Odoo 18 Point of Sale PWA - Odoo Slides
Odoo 18 Point of Sale PWA  - Odoo  SlidesOdoo 18 Point of Sale PWA  - Odoo  Slides
Odoo 18 Point of Sale PWA - Odoo Slides
Celine George
 
How to Add a Custom Menu, List view and FIlters in the Customer Portal Odoo 18
How to Add a Custom Menu, List view and FIlters in the Customer Portal Odoo 18How to Add a Custom Menu, List view and FIlters in the Customer Portal Odoo 18
How to Add a Custom Menu, List view and FIlters in the Customer Portal Odoo 18
Celine George
 
Primary Bash in Richmond 2025 - Literacy.pdf
Primary Bash in Richmond 2025 - Literacy.pdfPrimary Bash in Richmond 2025 - Literacy.pdf
Primary Bash in Richmond 2025 - Literacy.pdf
Faye Brownlie
 
he Grant Preparation Playbook: Building a System for Grant Success
he Grant Preparation Playbook: Building a System for Grant Successhe Grant Preparation Playbook: Building a System for Grant Success
he Grant Preparation Playbook: Building a System for Grant Success
TechSoup
 
Unit 4 Reverse Engineering Tools Functionalities & Use-Cases.pdf
Unit 4  Reverse Engineering Tools  Functionalities & Use-Cases.pdfUnit 4  Reverse Engineering Tools  Functionalities & Use-Cases.pdf
Unit 4 Reverse Engineering Tools Functionalities & Use-Cases.pdf
ChatanBawankar
 
Regression Analysis-Machine Learning -Different Types
Regression Analysis-Machine Learning -Different TypesRegression Analysis-Machine Learning -Different Types
Regression Analysis-Machine Learning -Different Types
Global Academy of Technology
 
Education Funding Equity in North Carolina: Looking Beyond Income
Education Funding Equity in North Carolina: Looking Beyond IncomeEducation Funding Equity in North Carolina: Looking Beyond Income
Education Funding Equity in North Carolina: Looking Beyond Income
EducationNC
 
Flower Identification Class-10 by Kushal Lamichhane.pdf
Flower Identification Class-10 by Kushal Lamichhane.pdfFlower Identification Class-10 by Kushal Lamichhane.pdf
Flower Identification Class-10 by Kushal Lamichhane.pdf
kushallamichhame
 
Best practices for incorporating home-based early care and learning programs ...
Best practices for incorporating home-based early care and learning programs ...Best practices for incorporating home-based early care and learning programs ...
Best practices for incorporating home-based early care and learning programs ...
KatieDukes5
 
TechSoup - Microsoft Discontinuation of Selected Cloud Donated Offers 2025.05...
TechSoup - Microsoft Discontinuation of Selected Cloud Donated Offers 2025.05...TechSoup - Microsoft Discontinuation of Selected Cloud Donated Offers 2025.05...
TechSoup - Microsoft Discontinuation of Selected Cloud Donated Offers 2025.05...
TechSoup
 
How to Configure Subcontracting in Odoo 18 Manufacturing
How to Configure Subcontracting in Odoo 18 ManufacturingHow to Configure Subcontracting in Odoo 18 Manufacturing
How to Configure Subcontracting in Odoo 18 Manufacturing
Celine George
 
Taxonomy and Systematics: Classification and Diversity of Insects.pptx
Taxonomy and Systematics: Classification and Diversity of Insects.pptxTaxonomy and Systematics: Classification and Diversity of Insects.pptx
Taxonomy and Systematics: Classification and Diversity of Insects.pptx
Arshad Shaikh
 
Drug Metabolism advanced medicinal chemistry.pptx
Drug Metabolism advanced medicinal chemistry.pptxDrug Metabolism advanced medicinal chemistry.pptx
Drug Metabolism advanced medicinal chemistry.pptx
pharmaworld
 
TechSoup Introduction to Generative AI and Copilot - 2025.05.22.pdf
TechSoup Introduction to Generative AI and Copilot - 2025.05.22.pdfTechSoup Introduction to Generative AI and Copilot - 2025.05.22.pdf
TechSoup Introduction to Generative AI and Copilot - 2025.05.22.pdf
TechSoup
 
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
siemaillard
 
How to Manage Allow Ship Later for Sold Product in odoo Point of Sale
How to Manage Allow Ship Later for Sold Product in odoo Point of SaleHow to Manage Allow Ship Later for Sold Product in odoo Point of Sale
How to Manage Allow Ship Later for Sold Product in odoo Point of Sale
Celine George
 
QUIZ-O-FORCE PRELIMINARY ANSWER SLIDE.pptx
QUIZ-O-FORCE PRELIMINARY ANSWER SLIDE.pptxQUIZ-O-FORCE PRELIMINARY ANSWER SLIDE.pptx
QUIZ-O-FORCE PRELIMINARY ANSWER SLIDE.pptx
Sourav Kr Podder
 
Unit 1 Tools Beneficial for Monitoring the Debugging Process.pdf
Unit 1 Tools Beneficial for Monitoring the Debugging Process.pdfUnit 1 Tools Beneficial for Monitoring the Debugging Process.pdf
Unit 1 Tools Beneficial for Monitoring the Debugging Process.pdf
ChatanBawankar
 
Odoo 18 Point of Sale PWA - Odoo Slides
Odoo 18 Point of Sale PWA  - Odoo  SlidesOdoo 18 Point of Sale PWA  - Odoo  Slides
Odoo 18 Point of Sale PWA - Odoo Slides
Celine George
 
How to Add a Custom Menu, List view and FIlters in the Customer Portal Odoo 18
How to Add a Custom Menu, List view and FIlters in the Customer Portal Odoo 18How to Add a Custom Menu, List view and FIlters in the Customer Portal Odoo 18
How to Add a Custom Menu, List view and FIlters in the Customer Portal Odoo 18
Celine George
 
Primary Bash in Richmond 2025 - Literacy.pdf
Primary Bash in Richmond 2025 - Literacy.pdfPrimary Bash in Richmond 2025 - Literacy.pdf
Primary Bash in Richmond 2025 - Literacy.pdf
Faye Brownlie
 
he Grant Preparation Playbook: Building a System for Grant Success
he Grant Preparation Playbook: Building a System for Grant Successhe Grant Preparation Playbook: Building a System for Grant Success
he Grant Preparation Playbook: Building a System for Grant Success
TechSoup
 
Unit 4 Reverse Engineering Tools Functionalities & Use-Cases.pdf
Unit 4  Reverse Engineering Tools  Functionalities & Use-Cases.pdfUnit 4  Reverse Engineering Tools  Functionalities & Use-Cases.pdf
Unit 4 Reverse Engineering Tools Functionalities & Use-Cases.pdf
ChatanBawankar
 
Regression Analysis-Machine Learning -Different Types
Regression Analysis-Machine Learning -Different TypesRegression Analysis-Machine Learning -Different Types
Regression Analysis-Machine Learning -Different Types
Global Academy of Technology
 
Education Funding Equity in North Carolina: Looking Beyond Income
Education Funding Equity in North Carolina: Looking Beyond IncomeEducation Funding Equity in North Carolina: Looking Beyond Income
Education Funding Equity in North Carolina: Looking Beyond Income
EducationNC
 
Flower Identification Class-10 by Kushal Lamichhane.pdf
Flower Identification Class-10 by Kushal Lamichhane.pdfFlower Identification Class-10 by Kushal Lamichhane.pdf
Flower Identification Class-10 by Kushal Lamichhane.pdf
kushallamichhame
 

Understanding Binary Arithmetic in Digital Electronics Systems