SlideShare a Scribd company logo
Lectures on Complement Theory (1’s and 2’s, 9’s
and 10’s), BCD Addition, Decimal, Octal, and
Hexadecimal Addition
for
Open Educational Resource
on
Logic Development and Programming (EC221)
by
Dr. Piyush Charan
Assistant Professor
Department of Electronics and Communication Engg.
Integral University, Lucknow
2
1. Complement Theory
2. 1’s and, 2’s complement operation
Number System Continued....
01-10-2020 Dr. Piyush Charan, Dept. of ECE, IU Lucknow
3
1.Complement Theory
Example 1 Get 1’s complement of 50
Complement Digits
50 = 110010

001101
01-10-2020 Dr. Piyush Charan, Dept. of ECE, IU Lucknow
4
1’s Complement Arithmetic
(ADD/SUB Method)
1. Read both the operands
2. Negative operand(s) (if any) is converted into 1’s complement form
3. Add both the numbers
4. If carry is generated (i.e. =1) then the resultant number is positive.
5. Add ONE to the output of setp4, to get the final answer.
6. If carry is not generated then the answer is Negative and available in 1’s complement form.
7. Convert output of step 6 into 1’s complement to get final answer.
01-10-2020 Dr. Piyush Charan, Dept. of ECE, IU Lucknow
5
1. 1’s Complement Theory
Example 1 : Subtract 1010 from 1111 using 1’s complement theory. (15-10 Small negative)

1 0 1 0 0 1 0 1
1 1 1 1
0 1 0 1+
1] 0 1 0 0
+ 0 0 0 1
0 1 0 1 =(5)
1’s complement
Carry “1” means the answer is positive .
01-10-2020 Dr. Piyush Charan, Dept. of ECE, IU Lucknow
6
1. 1’s Complement Theory
Example 2 : Subtract 1010 from 1000 using 1’s complement theory. (Large negative 8-10)
1 0 1 0 0 1 0 1
1 0 0 0
0 1 0 1+
0] 1 1 0 1
1’s complement
Carry “0” means the answer is negative and available in 1’s complement form.
1 1 0 1 0 0 1 0 = (2)
01-10-2020 Dr. Piyush Charan, Dept. of ECE, IU Lucknow
7
2’s Complement Arithmetic
1. How to get 2’s complement form
2. Arithmetic operation using 2’s complement theory
01-10-2020 Dr. Piyush Charan, Dept. of ECE, IU Lucknow
8
2’s Complement Arithmetic (How to get 2’s
complement form..?)
Example 1
Example 2
Complement Digits
Add 1
5 = 00000101
-5 = 11111011

11111010
+1
Complement Digits
Add 1
-13 = 11110011
13 = 00001101

00001100
+1
01-10-2020 Dr. Piyush Charan, Dept. of ECE, IU Lucknow
9
2’s Complement Arithmetic
(Method)
1. Read both the operands
2. Negative operand (if any) is converted into 2’s complement form
3. Add both the numbers (2’s complement of negative operand with the other one).
4. If carry is generated (i.e. =1) then the resultant number is positive and in original form
5. If carry is not generated(when we have negative operand) then the carry is assumed =0.
6. Carry zero means the resultant number is negative and in a 2’s complement form.
7. Convert the 2’s complement form into the original form.
01-10-2020 Dr. Piyush Charan, Dept. of ECE, IU Lucknow
POS + NEG → POS Answer
10
Take the 2’s complement of the negative number and use regular binary 8-bit
addition.
000010019
+ (-5)
4
⎯→
⎯
11111011+
00000101

11111010
+1
11111011
2’s
Complement
Process
100000100
Last Bit = 1: Answer is Positive Disregard 9th
Bit
01-10-2020 Dr. Piyush Charan, Dept. of ECE, IU Lucknow
POS + NEG → NEG Answer
11
Take the 2’s complement of the negative number and use regular 8-bit
binary addition.
11110111(-9)
+ 5
-4
⎯→
⎯
00000101+
00001001

11110110
+1
11110111
2’s
Complement
Process
011111100
Last Bit = 0: Answer is Negative . Discard the last bit
11111100

00000011
+1
00000100
To Check:
Perform 2’s
Complement
On Answer
01-10-2020 Dr. Piyush Charan, Dept. of ECE, IU Lucknow
Verify the logic using following combinations:
1: (10) –(01)
2: (10) –(02)
3: (10) –(05)
4: (10) –(08)
5: (10) –(09)
6: (10) –(10)
7: (210) –(08)
8: (120) –(55)
9: (52) –(18)
01-10-2020 12Dr. Piyush Charan, Dept. of ECE, IU Lucknow
A+B A B 2’s of B Addition Ans
A=10
B=-1
1 0 1 0
0 0 0 1 1 1 1 0
0 0 0 1
1 1 1 1
1 0 1 0
1 1 1 1 CY =1 So ans is +ve
1 1 0 0 1
+9
B=-2 0 0 1 0 1 1 0 1
0 0 0 1
1 1 1 0
1 0 1 0
1 1 1 0 CY =1 So ans is +ve
1 1 0 0 0
+8
B=-5 0 1 0 1 1 0 1 0
0 0 0 1
1 0 1 1
1 0 1 0
1 0 1 1
1 0 1 0 1 CY =1 So ans is +ve
+5
B=-8 1 0 0 0 0 1 1 1
0 0 0 1
1 0 0 0
1 0 1 0
1 0 0 0
1 0 0 1 0 CY =1 So ans is +ve
+2
B=-9 1 0 0 1 0 1 1 0
0 0 0 1
0 1 1 1
1 0 1 0
0 1 1 1
1 0 0 0 1 CY =1 So ans is +ve
+1
B=-10 1 0 1 0 0 1 0 1
0 0 0 1
0 1 1 0
1 0 1 0
0 1 1 0
1 0 0 0 0 CY =1 So ans is +ve
+0
2’s Complement Arithmetic (Examples)
01-10-2020
13Dr. Piyush Charan, Dept. of ECE, IU Lucknow
Example: Perform 2’s complement subtraction on 210-08
210 = 1 1 0 1 0 0 1 0 (Subtrahend)
8= 0 0 0 0 1 0 0 0 (Minuend)
2’s complement of 8 is = 1 1 1 1 1 0 0 0
Add both the numbers:
1 1 0 1 0 0 1 0
+1 1 1 1 1 0 0 0
1 1 1 0 0 1 0 1 0
Carry = 1 means and is positive +202
01-10-2020 14Dr. Piyush Charan, Dept. of ECE, IU Lucknow
15
2’s Complement Arithmetic (Examples on varying
number of bits)
Example: Perform 2’s complement arithmetic for (30)-(50) using
1: 6-bit number system
2: 8-bit number system
01-10-2020 Dr. Piyush Charan, Dept. of ECE, IU Lucknow
Example: Perform 2’s complement arithmetic for (30)-(50) using:
(30)= 0 1 1 1 1 0
(-50)= 1 1 0 0 1 0 2’s complement 0 0 1 1 0 1
0 0 0 0 0 1
0 0 1 1 1 0
Add both the numbers
0 1 1 1 1 0
0 0 1 1 1 0
0 1 0 1 1 0 0
Carry =0 means number is negative and in 2’s compl form
(30)= 0 0 0 1 1 1 1 0
(-50)= 0 0 1 1 0 0 1 0 2’s complement 1 1 0 0 1 1 0 1
0 0 0 0 0 0 0 1
1 1 0 0 1 1 1 0
0 0 0 1 1 1 1 0
1 1 0 0 1 1 1 0
0 1 1 1 0 1 1 0 0
Carry =0 means number is negative and in 2’s compl form
0 1 0 0 1 1
0 0 0 0 0 1
0 1 0 1 0 0 = -20
0 0 0 1 0 0 1 1
0 0 0 0 0 0 0 1
0 0 0 1 0 1 0 0 = -20
Add both the numbers
1: 6-bit number system 2: 8-bit number
system
01-10-2020 16Dr. Piyush Charan, Dept. of ECE, IU Lucknow
BCD Numbers
01-10-2020 Dr. Piyush Charan, Dept. of ECE, IU Lucknow 17
01-10-2020 Dr. Piyush Charan, Dept. of ECE, IU Lucknow 18
1. Binary to decimal Conversion
2. BCD Addition
11/2/2020
Dr. Piyush Charan, Dept. of ECE, Integral University,
Lucknow
19
9’s & 10’s Complement
11/2/2020 20
Dr. Piyush Charan, Dept. of ECE, Integral University,
Lucknow
Decimal(base 10) Addition
11/2/2020
Dr. Piyush Charan, Dept. of ECE, Integral University,
Lucknow
21
Octal (base 8) Addition
11/2/2020 22
Dr. Piyush Charan, Dept. of ECE, Integral University,
Lucknow
Hexadecimal(base 16) Addition
11/2/2020 23
Dr. Piyush Charan, Dept. of ECE, Integral University,
Lucknow

More Related Content

PPTX
Revised math 1
PDF
Tutorial 2: Some examples related to matrices
PPTX
Addition subtraction-multi-divison(6)
PDF
Unit 4_Part 1_Number System
PPT
1’s and 2’s complements
PPTX
L3 ARITHMETIC OPERATIONS.pptx
PPT
Lecture 1-431171839-lec2-BinaryArithmetic.ppt
PPTX
1’s_and_2’s_Complements.pptx electronic notes
Revised math 1
Tutorial 2: Some examples related to matrices
Addition subtraction-multi-divison(6)
Unit 4_Part 1_Number System
1’s and 2’s complements
L3 ARITHMETIC OPERATIONS.pptx
Lecture 1-431171839-lec2-BinaryArithmetic.ppt
1’s_and_2’s_Complements.pptx electronic notes

Similar to Unit 2: Data Representation contd. (20)

PPTX
1’s_and_2’s_Complements.pptx electronic note
PPT
Arithmetic circuits
PPTX
Number system
PDF
Complement
PDF
Digital logic and design 02
PPTX
Computer Architecture Binary Arithmetic Lecture.pptx
PPTX
CS301ES: ANALOG AND DIGITAL ELECTRONICS unit-3
PDF
FYBSC IT Digital Electronics Unit I Chapter II Number System and Binary Arith...
PPTX
ALU.pptx kjvjjfjrshfjshfjrhfjershfherjghre
PDF
Dld lecture module 02
PPT
8 number-system
PPT
สอนสนอนlec3สอนสนอนlec3สอนสนอนlec3สอนสนอนlec3สอนสนอนlec3
PPTX
Binary-Arithmeticcccccccccccccccccc.pptx
PDF
unit-2_DL.pdf
PPT
558196807-1-s-and-2-s-complement-Lecture-3.ppt
PPTX
POA Approach for Engineering Students final Year.pptx
PPT
Lecture 06 computer arithmatic
PPTX
EC Binary Substraction using 1's Complement,2's Complement
PPTX
Arithmetic Logic
PPTX
digital-electronics.pptx
1’s_and_2’s_Complements.pptx electronic note
Arithmetic circuits
Number system
Complement
Digital logic and design 02
Computer Architecture Binary Arithmetic Lecture.pptx
CS301ES: ANALOG AND DIGITAL ELECTRONICS unit-3
FYBSC IT Digital Electronics Unit I Chapter II Number System and Binary Arith...
ALU.pptx kjvjjfjrshfjshfjrhfjershfherjghre
Dld lecture module 02
8 number-system
สอนสนอนlec3สอนสนอนlec3สอนสนอนlec3สอนสนอนlec3สอนสนอนlec3
Binary-Arithmeticcccccccccccccccccc.pptx
unit-2_DL.pdf
558196807-1-s-and-2-s-complement-Lecture-3.ppt
POA Approach for Engineering Students final Year.pptx
Lecture 06 computer arithmatic
EC Binary Substraction using 1's Complement,2's Complement
Arithmetic Logic
digital-electronics.pptx
Ad

More from Dr Piyush Charan (20)

PDF
Unit 1- Intro to Wireless Standards.pdf
PPTX
Unit 1 Solar Collectors
PDF
Unit 5 Quantization
PDF
Unit 4 Lossy Coding Preliminaries
PDF
Unit 3 Geothermal Energy
PDF
Unit 2: Programming Language Tools
PDF
Unit 4 Arrays
PDF
Unit 3 Lecture Notes on Programming
PDF
Unit 3 introduction to programming
PDF
Forensics and wireless body area networks
PDF
Final PhD Defense Presentation
PDF
Unit 3 Arithmetic Coding
PDF
Unit 2 Lecture notes on Huffman coding
PDF
Unit 1 Introduction to Data Compression
PDF
Unit 3 Dictionary based Compression Techniques
PDF
Unit 1 Introduction to Non-Conventional Energy Resources
PDF
Unit 5-Operational Amplifiers and Electronic Measurement Devices
PDF
Unit 1 Introduction to Data Compression
PDF
Unit 4 Switching Theory and Logic Gates
PDF
Unit 1 Numerical Problems on PN Junction Diode
Unit 1- Intro to Wireless Standards.pdf
Unit 1 Solar Collectors
Unit 5 Quantization
Unit 4 Lossy Coding Preliminaries
Unit 3 Geothermal Energy
Unit 2: Programming Language Tools
Unit 4 Arrays
Unit 3 Lecture Notes on Programming
Unit 3 introduction to programming
Forensics and wireless body area networks
Final PhD Defense Presentation
Unit 3 Arithmetic Coding
Unit 2 Lecture notes on Huffman coding
Unit 1 Introduction to Data Compression
Unit 3 Dictionary based Compression Techniques
Unit 1 Introduction to Non-Conventional Energy Resources
Unit 5-Operational Amplifiers and Electronic Measurement Devices
Unit 1 Introduction to Data Compression
Unit 4 Switching Theory and Logic Gates
Unit 1 Numerical Problems on PN Junction Diode
Ad

Recently uploaded (20)

PDF
BIO-INSPIRED ARCHITECTURE FOR PARSIMONIOUS CONVERSATIONAL INTELLIGENCE : THE ...
PDF
Categorization of Factors Affecting Classification Algorithms Selection
PDF
Artificial Superintelligence (ASI) Alliance Vision Paper.pdf
PDF
PPT on Performance Review to get promotions
PDF
III.4.1.2_The_Space_Environment.p pdffdf
PDF
Level 2 – IBM Data and AI Fundamentals (1)_v1.1.PDF
PPTX
UNIT - 3 Total quality Management .pptx
PDF
A SYSTEMATIC REVIEW OF APPLICATIONS IN FRAUD DETECTION
PDF
PREDICTION OF DIABETES FROM ELECTRONIC HEALTH RECORDS
PPTX
Nature of X-rays, X- Ray Equipment, Fluoroscopy
PDF
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
PPTX
communication and presentation skills 01
PPT
Occupational Health and Safety Management System
PDF
SMART SIGNAL TIMING FOR URBAN INTERSECTIONS USING REAL-TIME VEHICLE DETECTI...
PDF
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
PDF
Unit I ESSENTIAL OF DIGITAL MARKETING.pdf
PDF
737-MAX_SRG.pdf student reference guides
PPTX
introduction to high performance computing
PPTX
Fundamentals of Mechanical Engineering.pptx
PDF
null (2) bgfbg bfgb bfgb fbfg bfbgf b.pdf
BIO-INSPIRED ARCHITECTURE FOR PARSIMONIOUS CONVERSATIONAL INTELLIGENCE : THE ...
Categorization of Factors Affecting Classification Algorithms Selection
Artificial Superintelligence (ASI) Alliance Vision Paper.pdf
PPT on Performance Review to get promotions
III.4.1.2_The_Space_Environment.p pdffdf
Level 2 – IBM Data and AI Fundamentals (1)_v1.1.PDF
UNIT - 3 Total quality Management .pptx
A SYSTEMATIC REVIEW OF APPLICATIONS IN FRAUD DETECTION
PREDICTION OF DIABETES FROM ELECTRONIC HEALTH RECORDS
Nature of X-rays, X- Ray Equipment, Fluoroscopy
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
communication and presentation skills 01
Occupational Health and Safety Management System
SMART SIGNAL TIMING FOR URBAN INTERSECTIONS USING REAL-TIME VEHICLE DETECTI...
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
Unit I ESSENTIAL OF DIGITAL MARKETING.pdf
737-MAX_SRG.pdf student reference guides
introduction to high performance computing
Fundamentals of Mechanical Engineering.pptx
null (2) bgfbg bfgb bfgb fbfg bfbgf b.pdf

Unit 2: Data Representation contd.

  • 1. Lectures on Complement Theory (1’s and 2’s, 9’s and 10’s), BCD Addition, Decimal, Octal, and Hexadecimal Addition for Open Educational Resource on Logic Development and Programming (EC221) by Dr. Piyush Charan Assistant Professor Department of Electronics and Communication Engg. Integral University, Lucknow
  • 2. 2 1. Complement Theory 2. 1’s and, 2’s complement operation Number System Continued.... 01-10-2020 Dr. Piyush Charan, Dept. of ECE, IU Lucknow
  • 3. 3 1.Complement Theory Example 1 Get 1’s complement of 50 Complement Digits 50 = 110010  001101 01-10-2020 Dr. Piyush Charan, Dept. of ECE, IU Lucknow
  • 4. 4 1’s Complement Arithmetic (ADD/SUB Method) 1. Read both the operands 2. Negative operand(s) (if any) is converted into 1’s complement form 3. Add both the numbers 4. If carry is generated (i.e. =1) then the resultant number is positive. 5. Add ONE to the output of setp4, to get the final answer. 6. If carry is not generated then the answer is Negative and available in 1’s complement form. 7. Convert output of step 6 into 1’s complement to get final answer. 01-10-2020 Dr. Piyush Charan, Dept. of ECE, IU Lucknow
  • 5. 5 1. 1’s Complement Theory Example 1 : Subtract 1010 from 1111 using 1’s complement theory. (15-10 Small negative)  1 0 1 0 0 1 0 1 1 1 1 1 0 1 0 1+ 1] 0 1 0 0 + 0 0 0 1 0 1 0 1 =(5) 1’s complement Carry “1” means the answer is positive . 01-10-2020 Dr. Piyush Charan, Dept. of ECE, IU Lucknow
  • 6. 6 1. 1’s Complement Theory Example 2 : Subtract 1010 from 1000 using 1’s complement theory. (Large negative 8-10) 1 0 1 0 0 1 0 1 1 0 0 0 0 1 0 1+ 0] 1 1 0 1 1’s complement Carry “0” means the answer is negative and available in 1’s complement form. 1 1 0 1 0 0 1 0 = (2) 01-10-2020 Dr. Piyush Charan, Dept. of ECE, IU Lucknow
  • 7. 7 2’s Complement Arithmetic 1. How to get 2’s complement form 2. Arithmetic operation using 2’s complement theory 01-10-2020 Dr. Piyush Charan, Dept. of ECE, IU Lucknow
  • 8. 8 2’s Complement Arithmetic (How to get 2’s complement form..?) Example 1 Example 2 Complement Digits Add 1 5 = 00000101 -5 = 11111011  11111010 +1 Complement Digits Add 1 -13 = 11110011 13 = 00001101  00001100 +1 01-10-2020 Dr. Piyush Charan, Dept. of ECE, IU Lucknow
  • 9. 9 2’s Complement Arithmetic (Method) 1. Read both the operands 2. Negative operand (if any) is converted into 2’s complement form 3. Add both the numbers (2’s complement of negative operand with the other one). 4. If carry is generated (i.e. =1) then the resultant number is positive and in original form 5. If carry is not generated(when we have negative operand) then the carry is assumed =0. 6. Carry zero means the resultant number is negative and in a 2’s complement form. 7. Convert the 2’s complement form into the original form. 01-10-2020 Dr. Piyush Charan, Dept. of ECE, IU Lucknow
  • 10. POS + NEG → POS Answer 10 Take the 2’s complement of the negative number and use regular binary 8-bit addition. 000010019 + (-5) 4 ⎯→ ⎯ 11111011+ 00000101  11111010 +1 11111011 2’s Complement Process 100000100 Last Bit = 1: Answer is Positive Disregard 9th Bit 01-10-2020 Dr. Piyush Charan, Dept. of ECE, IU Lucknow
  • 11. POS + NEG → NEG Answer 11 Take the 2’s complement of the negative number and use regular 8-bit binary addition. 11110111(-9) + 5 -4 ⎯→ ⎯ 00000101+ 00001001  11110110 +1 11110111 2’s Complement Process 011111100 Last Bit = 0: Answer is Negative . Discard the last bit 11111100  00000011 +1 00000100 To Check: Perform 2’s Complement On Answer 01-10-2020 Dr. Piyush Charan, Dept. of ECE, IU Lucknow
  • 12. Verify the logic using following combinations: 1: (10) –(01) 2: (10) –(02) 3: (10) –(05) 4: (10) –(08) 5: (10) –(09) 6: (10) –(10) 7: (210) –(08) 8: (120) –(55) 9: (52) –(18) 01-10-2020 12Dr. Piyush Charan, Dept. of ECE, IU Lucknow
  • 13. A+B A B 2’s of B Addition Ans A=10 B=-1 1 0 1 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 1 0 1 1 1 1 CY =1 So ans is +ve 1 1 0 0 1 +9 B=-2 0 0 1 0 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 0 1 1 1 0 CY =1 So ans is +ve 1 1 0 0 0 +8 B=-5 0 1 0 1 1 0 1 0 0 0 0 1 1 0 1 1 1 0 1 0 1 0 1 1 1 0 1 0 1 CY =1 So ans is +ve +5 B=-8 1 0 0 0 0 1 1 1 0 0 0 1 1 0 0 0 1 0 1 0 1 0 0 0 1 0 0 1 0 CY =1 So ans is +ve +2 B=-9 1 0 0 1 0 1 1 0 0 0 0 1 0 1 1 1 1 0 1 0 0 1 1 1 1 0 0 0 1 CY =1 So ans is +ve +1 B=-10 1 0 1 0 0 1 0 1 0 0 0 1 0 1 1 0 1 0 1 0 0 1 1 0 1 0 0 0 0 CY =1 So ans is +ve +0 2’s Complement Arithmetic (Examples) 01-10-2020 13Dr. Piyush Charan, Dept. of ECE, IU Lucknow
  • 14. Example: Perform 2’s complement subtraction on 210-08 210 = 1 1 0 1 0 0 1 0 (Subtrahend) 8= 0 0 0 0 1 0 0 0 (Minuend) 2’s complement of 8 is = 1 1 1 1 1 0 0 0 Add both the numbers: 1 1 0 1 0 0 1 0 +1 1 1 1 1 0 0 0 1 1 1 0 0 1 0 1 0 Carry = 1 means and is positive +202 01-10-2020 14Dr. Piyush Charan, Dept. of ECE, IU Lucknow
  • 15. 15 2’s Complement Arithmetic (Examples on varying number of bits) Example: Perform 2’s complement arithmetic for (30)-(50) using 1: 6-bit number system 2: 8-bit number system 01-10-2020 Dr. Piyush Charan, Dept. of ECE, IU Lucknow
  • 16. Example: Perform 2’s complement arithmetic for (30)-(50) using: (30)= 0 1 1 1 1 0 (-50)= 1 1 0 0 1 0 2’s complement 0 0 1 1 0 1 0 0 0 0 0 1 0 0 1 1 1 0 Add both the numbers 0 1 1 1 1 0 0 0 1 1 1 0 0 1 0 1 1 0 0 Carry =0 means number is negative and in 2’s compl form (30)= 0 0 0 1 1 1 1 0 (-50)= 0 0 1 1 0 0 1 0 2’s complement 1 1 0 0 1 1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 1 1 0 0 0 0 1 1 1 1 0 1 1 0 0 1 1 1 0 0 1 1 1 0 1 1 0 0 Carry =0 means number is negative and in 2’s compl form 0 1 0 0 1 1 0 0 0 0 0 1 0 1 0 1 0 0 = -20 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 = -20 Add both the numbers 1: 6-bit number system 2: 8-bit number system 01-10-2020 16Dr. Piyush Charan, Dept. of ECE, IU Lucknow
  • 17. BCD Numbers 01-10-2020 Dr. Piyush Charan, Dept. of ECE, IU Lucknow 17
  • 18. 01-10-2020 Dr. Piyush Charan, Dept. of ECE, IU Lucknow 18
  • 19. 1. Binary to decimal Conversion 2. BCD Addition 11/2/2020 Dr. Piyush Charan, Dept. of ECE, Integral University, Lucknow 19
  • 20. 9’s & 10’s Complement 11/2/2020 20 Dr. Piyush Charan, Dept. of ECE, Integral University, Lucknow
  • 21. Decimal(base 10) Addition 11/2/2020 Dr. Piyush Charan, Dept. of ECE, Integral University, Lucknow 21
  • 22. Octal (base 8) Addition 11/2/2020 22 Dr. Piyush Charan, Dept. of ECE, Integral University, Lucknow
  • 23. Hexadecimal(base 16) Addition 11/2/2020 23 Dr. Piyush Charan, Dept. of ECE, Integral University, Lucknow