SlideShare uma empresa Scribd logo
1 de 35
Baixar para ler offline
Chapter 1
DATA REPRESENTATION
Complements

Examples                  Examples
   10’s C                    1’s C
    • 512790 = 487210          • 011100 = 100011
    • 14672.3 = 85327.7
                              2’s C
   7’s C                      • 010101 = 101011
    • 65172 = 12605
                              16’s C
                               • 59A1D = A65E3
Systems Used to Represent Negative Numbers

Signed-Magnitude Representation
    A number consists of a magnitude and a symbol
     indicating whether the magnitude is positive or
     negative.

Examples:
     +85 = 010101012           -85 = 110101012
     +127 = 011111112          -127 = 111111112
Systems Used to Represent Negative Numbers


Signed-Complement System
• This system negates a number by taking its
  complement as defined by the system.

Examples:
  +85 = 010101012           -85 = 101010102 (1s)
  +127 = 011111112          -127 = 100000012 (2s)
Chapter 2

COMPUTER ARITHMETIC
Arithmetic in various Number Systems

• Addition of numbers in any number system
  – Add numbers starting at the least significant
    digit.
  – Perform addition on numbers of the same
    number base.
• Subtraction of numbers
  – Must use complements
Binary Addition

• To add binary numbers: (X + Y)
   – Get the SCR of the negative numbers
   – Add the two numbers
   – If the SCR used is:
      • 2's C: Discard end carry
      • 1's C: Add the end carry to the sum
Example: Binary Addition

• Add the following numbers. Use 8 bits to
  represent each number.
  – 6 + 13
  – 6 + (-13)
  – (-6) + 13
  – (-6) + (-13)
Example: Binary Addition


•   6 + 13 = 19
Example: Binary Addition


•   6 + 13 = 19
    0 0000110
Example: Binary Addition


•   6 + 13 = 19
    0 0000110
+   0 0001101
Example: Binary Addition


•   6 + 13 = 19
    0 0000110
+   0 0001101
=   0 0010011
Example: Binary Addition


•   6 + 13 = 19   •   6 + (-13) = -7
    0 0000110           0 0000110
+   0 0001101
=   0 0010011
Example: Binary Addition


•   6 + 13 = 19   •   6 + (-13) = -7
    0 0000110           0 0000110
+   0 0001101                          (1's)
=   0 0010011
Example: Binary Addition


•   6 + 13 = 19   •       6 + (-13) = -7
    0 0000110               0 0000110
+   0 0001101         +     1 1110010 (1's)
=   0 0010011
Example: Binary Addition


•   6 + 13 = 19   •       6 + (-13) = -7
    0 0000110               0 0000110
+   0 0001101         +     1 1110010 (1's)
=   0 0010011         =     1 1111000
Example: Binary Addition


 • (-6) + 13 = 7
                (2's)




6 = 0 0000110
Example: Binary Addition


 • (-6) + 13 = 7
    1 1111010 (2's)




6 = 0 0000110
Example: Binary Addition


 • (-6) + 13 = 7
   1 1111010 (2's)
 + 0 0001101



6 = 0 0000110
Example: Binary Addition


 • (-6) + 13 = 7
   1 1111010 (2's)
 + 0 0001101
 =10 0000111


6 = 0 0000110
Example: Binary Addition


 • (-6) + 13 = 7
   1 1111010 (2's)
 + 0 0001101
 =10 0000111


6 = 0 0000110
Example: Binary Addition


 • (-6) + 13 = 7     •   (-6) + (-13) = -19
   1 1111010 (2's)         1 1111010 (2's)
 + 0 0001101
 =10 0000111


6 = 0 0000110
Example: Binary Addition


 • (-6) + 13 = 7     •       (-6) + (-13) = -19
   1 1111010 (2's)             1 1111010 (2's)
 + 0 0001101             +     1 1110011 (2's)
 =10 0000111


6 = 0 0000110
Example: Binary Addition


 • (-6) + 13 = 7     •     (-6) + (-13) = -19
   1 1111010 (2's)          1 1111010 (2's)
 + 0 0001101             + 1 1110011 (2's)
 =10 0000111             = 11 1101101


6 = 0 0000110
Example: Binary Addition


 • (-6) + 13 = 7     •     (-6) + (-13) = -19
   1 1111010 (2's)          1 1111010 (2's)
 + 0 0001101             + 1 1110011 (2's)
 =10 0000111             = 11 1101101


6 = 0 0000110
Examples: Addition

• (999.5 + 281.6)10
        1 1 1

        999.5
  +     281.6
       1 281.1
Examples: Addition

• (999.5 + 281.6)10   • (110.11 + 101010.11)2
        1 1 1                 1 1 1   1   1

        999.5                  110.11
  +     281.6          +    101010.11
       1 281.1              1100 01.10
Examples: Addition

• (355.45 + 240.664)8

   355.45
 + 240.664
 =
Examples: Addition

• (355.45 + 240.664)8
         1

   355.45
 + 240.664
 =           4
Examples: Addition

• (355.45 + 240.664)8
         1

   355.45
 + 240.664
 =        34
Examples: Addition

• (355.45 + 240.664)8
        1   1

   355.45
 + 240.664
 =     6.3 34
Examples: Addition

• (355.45 + 240.664)8
     1   1   1

   355.45
 + 240.664
 = 6 16.3 3 4
Examples: Addition

• (355.45 + 240.664)8   • (A0C.D + E72.9)16
      1   1   1

   355.45                      A0C.D
 + 240.664               +     E72.9
 = 6 16.3 3 4            =
Examples: Addition

• (355.45 + 240.664)8   • (A0C.D + E72.9)16
      1   1   1                   1

   355.45                      A0C.D
 + 240.664               +     E72.9
 = 6 16.3 3 4            =         .6
Examples: Addition

• (355.45 + 240.664)8   • (A0C.D + E72.9)16
      1   1   1                    1

   355.45                      A0C.D
 + 240.664               +     E72.9
 = 6 16.3 3 4            =   1 8 7 F.6

Mais conteúdo relacionado

Mais procurados

1.0 number bases form 5
1.0 number bases form 51.0 number bases form 5
1.0 number bases form 5larasati06
 
ALL ABOUT NUMBER SYSTEMS
ALL ABOUT NUMBER SYSTEMSALL ABOUT NUMBER SYSTEMS
ALL ABOUT NUMBER SYSTEMSvinaygoel18
 
Konversi bilangan octal
Konversi bilangan octalKonversi bilangan octal
Konversi bilangan octalEko Prakoso
 
Math unit7 number system and bases
Math unit7 number system and basesMath unit7 number system and bases
Math unit7 number system and baseseLearningJa
 
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
 
Conversiones binario decimal/ decimal binario
Conversiones binario decimal/ decimal  binarioConversiones binario decimal/ decimal  binario
Conversiones binario decimal/ decimal binarioaidalyb2
 
comp.org Chapter 2
comp.org Chapter 2comp.org Chapter 2
comp.org Chapter 2Rajat Sharma
 
Reducing fractions
Reducing fractionsReducing fractions
Reducing fractionsalmasmarin
 
Octal and Hexadecimal Numbering Systems
Octal and Hexadecimal Numbering SystemsOctal and Hexadecimal Numbering Systems
Octal and Hexadecimal Numbering SystemsLeo Hernandez
 
Taller de conversiones binariodecimal
Taller de conversiones binariodecimalTaller de conversiones binariodecimal
Taller de conversiones binariodecimalJaramillopaola
 
แบบทดสอบ ชุดที่ 2 สมการเชิงเส้นตัวแปรเดียว
แบบทดสอบ ชุดที่ 2 สมการเชิงเส้นตัวแปรเดียว แบบทดสอบ ชุดที่ 2 สมการเชิงเส้นตัวแปรเดียว
แบบทดสอบ ชุดที่ 2 สมการเชิงเส้นตัวแปรเดียว Jirathorn Buenglee
 
Naskah Murid Modul 1 Number Bases
Naskah Murid Modul 1 Number BasesNaskah Murid Modul 1 Number Bases
Naskah Murid Modul 1 Number BasesZURAIDA ADAM
 
Taller de conversiones binariodecimal
Taller de conversiones binariodecimalTaller de conversiones binariodecimal
Taller de conversiones binariodecimalJuan D Patiño Torres
 

Mais procurados (19)

1.0 number bases form 5
1.0 number bases form 51.0 number bases form 5
1.0 number bases form 5
 
ALL ABOUT NUMBER SYSTEMS
ALL ABOUT NUMBER SYSTEMSALL ABOUT NUMBER SYSTEMS
ALL ABOUT NUMBER SYSTEMS
 
Konversi bilangan octal
Konversi bilangan octalKonversi bilangan octal
Konversi bilangan octal
 
Math unit7 number system and bases
Math unit7 number system and basesMath unit7 number system and bases
Math unit7 number system and bases
 
Topic 3 decimals
Topic 3   decimalsTopic 3   decimals
Topic 3 decimals
 
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
 
Forecasting Attendance at SWU Football Games
Forecasting Attendance at SWU Football GamesForecasting Attendance at SWU Football Games
Forecasting Attendance at SWU Football Games
 
Representation Of Numbers and Characters
Representation Of Numbers and CharactersRepresentation Of Numbers and Characters
Representation Of Numbers and Characters
 
Conversiones binario decimal/ decimal binario
Conversiones binario decimal/ decimal  binarioConversiones binario decimal/ decimal  binario
Conversiones binario decimal/ decimal binario
 
200203 answers01
200203 answers01200203 answers01
200203 answers01
 
comp.org Chapter 2
comp.org Chapter 2comp.org Chapter 2
comp.org Chapter 2
 
Reducing fractions
Reducing fractionsReducing fractions
Reducing fractions
 
Octal and Hexadecimal Numbering Systems
Octal and Hexadecimal Numbering SystemsOctal and Hexadecimal Numbering Systems
Octal and Hexadecimal Numbering Systems
 
Taller de conversiones binariodecimal
Taller de conversiones binariodecimalTaller de conversiones binariodecimal
Taller de conversiones binariodecimal
 
แบบทดสอบ ชุดที่ 2 สมการเชิงเส้นตัวแปรเดียว
แบบทดสอบ ชุดที่ 2 สมการเชิงเส้นตัวแปรเดียว แบบทดสอบ ชุดที่ 2 สมการเชิงเส้นตัวแปรเดียว
แบบทดสอบ ชุดที่ 2 สมการเชิงเส้นตัวแปรเดียว
 
Naskah Murid Modul 1 Number Bases
Naskah Murid Modul 1 Number BasesNaskah Murid Modul 1 Number Bases
Naskah Murid Modul 1 Number Bases
 
Number system
Number systemNumber system
Number system
 
01.Number Systems
01.Number Systems01.Number Systems
01.Number Systems
 
Taller de conversiones binariodecimal
Taller de conversiones binariodecimalTaller de conversiones binariodecimal
Taller de conversiones binariodecimal
 

Destaque (11)

Cmsc 100 (web content)
Cmsc 100  (web content)Cmsc 100  (web content)
Cmsc 100 (web content)
 
Chapter2c
Chapter2cChapter2c
Chapter2c
 
Cmsc 100 xhtml and css
Cmsc 100 xhtml and cssCmsc 100 xhtml and css
Cmsc 100 xhtml and css
 
Chapter2b
Chapter2bChapter2b
Chapter2b
 
Chapter2a
Chapter2aChapter2a
Chapter2a
 
Chapter1b
Chapter1bChapter1b
Chapter1b
 
linked list (CMSC 123)
linked list (CMSC 123)linked list (CMSC 123)
linked list (CMSC 123)
 
Cmsc 100 (web programming in a nutshell)
Cmsc 100 (web programming in a nutshell)Cmsc 100 (web programming in a nutshell)
Cmsc 100 (web programming in a nutshell)
 
Chapter1c
Chapter1cChapter1c
Chapter1c
 
Chapter2d
Chapter2dChapter2d
Chapter2d
 
Chapter1a
Chapter1aChapter1a
Chapter1a
 

Semelhante a Chapter2a

2.1 data represent on cpu
2.1 data represent on cpu2.1 data represent on cpu
2.1 data represent on cpuWan Afirah
 
Lec2 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Num...
Lec2 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Num...Lec2 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Num...
Lec2 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Num...Hsien-Hsin Sean Lee, Ph.D.
 
Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...
Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...
Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...JanakiramanLohitha
 
Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...
Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...
Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...NikxzsLeonTormon
 
UNIT - I.pptx
UNIT - I.pptxUNIT - I.pptx
UNIT - I.pptxamudhak10
 
Computer Architecture
Computer ArchitectureComputer Architecture
Computer ArchitectureRavi Kumar
 
Computer Architecture
Computer ArchitectureComputer Architecture
Computer ArchitectureRavi Kumar
 
Digital_Electronics_Basics.pdf
Digital_Electronics_Basics.pdfDigital_Electronics_Basics.pdf
Digital_Electronics_Basics.pdfrahul143341
 
digital-electronics.pptx
digital-electronics.pptxdigital-electronics.pptx
digital-electronics.pptxsulekhasaxena2
 
Number system
Number systemNumber system
Number systemaviban
 
CMSC 56 | Lecture 10: Integer Representations & Algorithms
CMSC 56 | Lecture 10: Integer Representations & AlgorithmsCMSC 56 | Lecture 10: Integer Representations & Algorithms
CMSC 56 | Lecture 10: Integer Representations & Algorithmsallyn joy calcaben
 
ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.pptssuser52a19e
 

Semelhante a Chapter2a (20)

2.1 data represent on cpu
2.1 data represent on cpu2.1 data represent on cpu
2.1 data represent on cpu
 
Lec2 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Num...
Lec2 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Num...Lec2 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Num...
Lec2 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Num...
 
Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...
Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...
Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...
 
Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...
Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...
Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...
 
Ch_10.pptx.pdf
Ch_10.pptx.pdfCh_10.pptx.pdf
Ch_10.pptx.pdf
 
UNIT - I.pptx
UNIT - I.pptxUNIT - I.pptx
UNIT - I.pptx
 
Computer Architecture
Computer ArchitectureComputer Architecture
Computer Architecture
 
Computer Architecture
Computer ArchitectureComputer Architecture
Computer Architecture
 
Digital_Electronics_Basics.pdf
Digital_Electronics_Basics.pdfDigital_Electronics_Basics.pdf
Digital_Electronics_Basics.pdf
 
Cse115 lecture01numbersystems
Cse115 lecture01numbersystemsCse115 lecture01numbersystems
Cse115 lecture01numbersystems
 
Mba ebooks
Mba ebooksMba ebooks
Mba ebooks
 
digital-electronics.pptx
digital-electronics.pptxdigital-electronics.pptx
digital-electronics.pptx
 
Number system
Number systemNumber system
Number system
 
DIGITAL ELECTRONICS.pptx
DIGITAL ELECTRONICS.pptxDIGITAL ELECTRONICS.pptx
DIGITAL ELECTRONICS.pptx
 
ARITHMETIC FOR COMPUTERS
ARITHMETIC FOR COMPUTERS	  ARITHMETIC FOR COMPUTERS
ARITHMETIC FOR COMPUTERS
 
CMSC 56 | Lecture 10: Integer Representations & Algorithms
CMSC 56 | Lecture 10: Integer Representations & AlgorithmsCMSC 56 | Lecture 10: Integer Representations & Algorithms
CMSC 56 | Lecture 10: Integer Representations & Algorithms
 
Dld 3
Dld 3Dld 3
Dld 3
 
ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.ppt
 
ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.ppt
 
binary-numbers.ppt
binary-numbers.pptbinary-numbers.ppt
binary-numbers.ppt
 

Último

Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Disha Kariya
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room servicediscovermytutordmt
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...fonyou31
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 

Último (20)

Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room service
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 

Chapter2a