SlideShare uma empresa Scribd logo
1 de 71
Baixar para ler offline
1.17
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                    Truncation, Rounding,
                       Overflow, and
                      Conversion Error


 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                                             Goal

      To be able to explain and demonstrate the concepts of
       truncation, rounding, overflow, and conversion error.




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




       The computer is imperfect




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




       The computer is imperfect
     No matter how large a computer is, it still has a limited
                     amount of storage.




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




       The computer is imperfect
     No matter how large a computer is, it still has a limited
                     amount of storage.
                           Consider the result of dividing 2 by 3.




                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




       The computer is imperfect
     No matter how large a computer is, it still has a limited
                     amount of storage.
                           Consider the result of dividing 2 by 3.
                                  0.666666 is a repeating number.




                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




       The computer is imperfect
     No matter how large a computer is, it still has a limited
                     amount of storage.
                           Consider the result of dividing 2 by 3.
                                  0.666666 is a repeating number.
       Regardless of how many bits we use to store this
    number, it will get “cut off” at some point. No computer
                can accurately store this number.
                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                              Truncation




                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                              Truncation
     To truncate a number means to simply ignore the extra
             digits that the computer cannot store.




                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                              Truncation
     To truncate a number means to simply ignore the extra
             digits that the computer cannot store.
                    Truncate the following to 3 significant digits
                                                                0.2349




                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                              Truncation
     To truncate a number means to simply ignore the extra
             digits that the computer cannot store.
                    Truncate the following to 3 significant digits
                                                                0.234




                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                              Truncation
     To truncate a number means to simply ignore the extra
             digits that the computer cannot store.
                    Truncate the following to 5 significant digits
                                                                0.666666666666




                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                              Truncation
     To truncate a number means to simply ignore the extra
             digits that the computer cannot store.
                    Truncate the following to 5 significant digits
                                                                0.66666




                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                              Truncation
     To truncate a number means to simply ignore the extra
             digits that the computer cannot store.
           Truncate the following to 8 significant binary digits
                                                       0.1010101111000101




                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                              Truncation
     To truncate a number means to simply ignore the extra
             digits that the computer cannot store.
           Truncate the following to 8 significant binary digits
                                                       0.10101011




                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0 0 1 1 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0
      Represent 0.02510 in IEEE standard
       1. 0.02510 = 0.00000112         0.000001100110011
                                         1.100110011001
                                           1.1001 x 2-6
        2. normalized as 1.1001 x 2-6
        3. set the sign bit
        4. store -6 in the exponent section as (-6 + 127 = 121) 011110012
        5. store the normalized binary form




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                  Overflow Error




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                  Overflow Error
   Let’s assume that we are using 8 bits and 2’s complement
    to store integers (1 sign bit and 7 bits for the number).




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                  Overflow Error
   Let’s assume that we are using 8 bits and 2’s complement
    to store integers (1 sign bit and 7 bits for the number).
                                             Calculate 12610 + 1310




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                  Overflow Error
   Let’s assume that we are using 8 bits and 2’s complement
    to store integers (1 sign bit and 7 bits for the number).
                                             Calculate 12610 + 1310

       12610
      + 1310

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                  Overflow Error
   Let’s assume that we are using 8 bits and 2’s complement
    to store integers (1 sign bit and 7 bits for the number).
                                             Calculate 12610 + 1310

       12610                                 011111102
      + 1310                                +000011012

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                  Overflow Error
   Let’s assume that we are using 8 bits and 2’s complement
    to store integers (1 sign bit and 7 bits for the number).
                                             Calculate 12610 + 1310

       12610                                 011111102
      + 1310                                +000011012
                                             100010112
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                  Overflow Error
   Let’s assume that we are using 8 bits and 2’s complement
    to store integers (1 sign bit and 7 bits for the number).
                                             Calculate 12610 + 1310

       12610                                 011111102
      + 1310                                +000011012
                                 bit n
                                  sig




                                             100010112
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                  Overflow Error
   Let’s assume that we are using 8 bits and 2’s complement
    to store integers (1 sign bit and 7 bits for the number).
                                             Calculate 12610 + 1310

       12610                                 011111102                                                 this is -11710 in
                                                                                                    2’s complement, but
                                                                                                   the answer should be
      + 1310                                +000011012                                                       13910.
                                                                                                     What happened?
                                 bit n
                                  sig




                                             100010112
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                  Overflow Error
   Let’s assume that we are using 8 bits and 2’s complement
    to store integers (1 sign bit and 7 bits for the number).
                                             Calculate 12610 + 1310

       12610                                 01111110sign 7 bits can only store
                                                Remember that the
                                              first bit is used as a
                                                                    2
      + 1310
                                                                      up to 127.
                                            +000011012
                                                          bit.
                                 bit n
                                  sig




                                             100010112
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                  Overflow Error
   Let’s assume that we are using 8 bits and 2’s complement
    to store integers (1 sign bit and 7 bits for the number).
                                             Calculate 12610 + 1310

       12610                                 011111102                  7 bits can only
                                                                       store up to 127.

      + 1310
                                                                      We have an overflow
                                            +000011012                     problem.
                                 bit n
                                  sig




                                             100010112
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                                  Rounding




                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                                  Rounding
    An alternative to truncation is rounding, where the last
   digit is “adjusted” to give a more accurate representation
                          of the number.




                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                                  Rounding
    An alternative to truncation is rounding, where the last
   digit is “adjusted” to give a more accurate representation
                          of the number.
                      Round the following to 2 significant digits




                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                                  Rounding
    An alternative to truncation is rounding, where the last
   digit is “adjusted” to give a more accurate representation
                          of the number.
                      Round the following to 2 significant digits

                                                                  2.53


                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                                  Rounding
    An alternative to truncation is rounding, where the last
   digit is “adjusted” to give a more accurate representation
                          of the number.
                      Round the following to 2 significant digits

                                                                  2.53


                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                                  Rounding
    An alternative to truncation is rounding, where the last
   digit is “adjusted” to give a moreSince 3 is less than 5,
                                       accurate representation
                          of the number. will be like
                                        this
                                                                                          truncation
                      Round the following to 2 significant digits

                                                                  2.53


                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                                  Rounding
    An alternative to truncation is rounding, where the last
   digit is “adjusted” to give a moreSince 3 is less than 5,
                                       accurate representation
                          of the number. will be like
                                        this
                                                                                          truncation
                      Round the following to 2 significant digits

                                                                  2.5


                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                                  Rounding
    An alternative to truncation is rounding, where the last
   digit is “adjusted” to give a more accurate representation
                          of the number.
                      Round the following to 2 significant digits

                                                                  2.5


                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                                  Rounding
    An alternative to truncation is rounding, where the last
   digit is “adjusted” to give a more accurate representation
                          of the number.
                      Round the following to 3 significant digits

                                                                  17.948


                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                                  Rounding
    An alternative to truncation is rounding, where the last
   digit is “adjusted” to give a more accurate representation
                          of the number.
                      Round the following to 3 significant digits

                                                                  17.948


                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                                  Rounding
    An alternative to truncation is rounding, where the last
   digit is “adjusted” to give a more accurate representation
                                      Since 4 is less than 5,
                          of the number.this will be like
                                                                                             truncation
                      Round the following to 3 significant digits

                                                                  17.948


                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                                  Rounding
    An alternative to truncation is rounding, where the last
   digit is “adjusted” to give a more accurate representation
                          of the number.
                      Round the following to 3 significant digits

                                                                  17.9


                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                                  Rounding
    An alternative to truncation is rounding, where the last
   digit is “adjusted” to give a more accurate representation
                          of the number.
                      Round the following to 2 significant digits

                                                                  -0.002463


                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                                  Rounding
    An alternative to truncation is rounding, where the last
                                             Since we are
   digit is “adjusted” to give a more accurate representation
                                            concerned only
                                          about the significant
                          of the number. digits, we will only
                                                                                           consider these
                      Round the following to 2                                       significant digits
                                                                                               digits

                                                                  -0.002463


                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                                  Rounding
    An alternative to truncation is rounding, where the last
   digit is “adjusted” to give a more accurate representation
                          of the number.
                      Round the following to 2 significant digits

                                                                  -0.002463


                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                                  Rounding
    An alternative to truncation is rounding, where the last
   digit is “adjusted” to give a more accurate 6representation
                                           Since is greater
                                         than or equal to 5, we
                          of the number.“round up” the 4 to its
                                                                                                      left to 5
                      Round the following to 2 significant digits

                                                                  -0.002463


                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                                  Rounding
    An alternative to truncation is rounding, where the last
   digit is “adjusted” to give a more accurate representation
                          of the number.
                      Round the following to 2 significant digits

                                                                  -0.0025


                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                                  Rounding
    An alternative to truncation is rounding, where the last
   digit is “adjusted” to give a more accurate representation
                          of the number.
                      Round the following to 5 significant digits

                                                                  0.173


                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                                  Rounding
    An alternative to truncation is rounding, that this isthe last
                                           Note where a
                                           repeating number.
   digit is “adjusted” to give a more accurateexpand to at least
                                      We should
                                                  representation
                          of the number. significant digits before
                                        6
                                                                                       rounding to 5 significant
                      Round the following to 5                                       significant digits
                                                                                              digits

                                                                  0.173


                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                                  Rounding
    An alternative to truncation is rounding, that this isthe last
                                           Note where a
                                           repeating number.
   digit is “adjusted” to give a more accurateexpand to at least
                                      We should
                                                  representation
                          of the number. significant digits before
                                        6
                                                                                       rounding to 5 significant
                      Round the following to 5                                       significant digits
                                                                                              digits

                                                                  0.173737


                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                                  Rounding
    An alternative to truncation is rounding, where the last
   digit is “adjusted” to give a more accurate representation
                          of the number.
                      Round the following to 5 significant digits

                                                                  0.173737


                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                                  Rounding
    An alternative to truncation is rounding, where the last
   digit is “adjusted” to give a more accurate representation
                          of the number.
                      Round the following to 5 significant digits

                                                                  0.173737


                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                                  Rounding
    An alternative to truncation is rounding, where the last
   digit is “adjusted” to give a more accurate representation
                                            Since 7 is greater
                                          than or equal to 5, we
                          of the number. “round up” the 3 to its
                                                                                                        left to 4
                      Round the following to 5 significant digits

                                                                  0.173737


                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                                  Rounding
    An alternative to truncation is rounding, where the last
   digit is “adjusted” to give a more accurate representation
                          of the number.
                      Round the following to 5 significant digits

                                                                  0.17374


                                                                                                                                   2/
 MATH1003
                                                                                                                                     3
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                             Conversion Error
     Let’s represent 0.110 with 4 bytes in IEEE standard form.




                                                                                                                                   0.1
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                             Conversion Error
     Let’s represent 0.110 with 4 bytes in IEEE standard form.
        1. 0.110 = 0.000112




                                                                                                                                   0.1
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                             Conversion Error
     Let’s represent 0.110 with 4 bytes in IEEE standard form.
        1. 0.110 = 0.000112
        2. normalize 0.000112 = 1.10011 x 2-4




                                                                                                                                   0.1
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                             Conversion Error
     Let’s represent 0.110 with 4 bytes in IEEE standard form.
      1. 0.110 = 0.000112                    1.10011 x 2-4
        2. normalize 0.000112 = 1.10011 x 2-4




                                                                                                                                   0.1
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                             Conversion Error
     Let’s represent 0.110 with 4 bytes in IEEE standard form.
      1. 0.110 = 0.000112                    1.10011 x 2-4
        2. normalize 0.000112 = 1.10011 x 2-4
        3. set the sign bit




                                                                                                                                   0.1
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                             Conversion Error
      0
     Let’s represent 0.110 with 4 bytes in IEEE standard form.
      1. 0.110 = 0.000112                    1.10011 x 2-4
        2. normalize 0.000112 = 1.10011 x 2-4
        3. set the sign bit




                                                                                                                                   0.1
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                             Conversion Error
      0
     Let’s represent 0.110 with 4 bytes in IEEE standard form.
      1. 0.110 = 0.000112                    1.10011 x 2-4
        2. normalize 0.000112 = 1.10011 x 2-4
        3. set the sign bit
        4. store -4 in the exponent section




                                                                                                                                   0.1
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                             Conversion Error
      0
     Let’s represent 0.110 with 4 bytes in IEEE standard form.
      1. 0.110 = 0.000112                    1.10011 x 2-4
        2. normalize 0.000112 = 1.10011 x 2-4
        3. set the sign bit                                                                 -4 + 127 = 123
        4. store -4 in the exponent section
                                                                                           123 = 011110112




                                                                                                                                   0.1
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                             Conversion Error
      0 0 1 1 1 1 0 1 1
     Let’s represent 0.110 with 4 bytes in IEEE standard form.
      1. 0.110 = 0.000112                    1.10011 x 2-4
        2. normalize 0.000112 = 1.10011 x 2-4
        3. set the sign bit                                                                 -4 + 127 = 123
        4. store -4 in the exponent section
                                                                                           123 = 011110112




                                                                                                                                   0.1
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                             Conversion Error
      0 0 1 1 1 1 0 1 1
     Let’s represent 0.110 with 4 bytes in IEEE standard form.
      1. 0.110 = 0.000112                    1.10011 x 2-4
        2. normalize 0.000112 = 1.10011 x 2-4
        3. set the sign bit
        4. store -4 in the exponent section
        5. store the normalized binary form




                                                                                                                                   0.1
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                             Conversion Error
      0 0 1 1 1 1 0 1 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0
     Let’s represent 0.110 with 4 bytes in IEEE standard form.
      1. 0.110 = 0.000112                    1.10011 x 2-4
        2. normalize 0.000112 = 1.10011 x 2-4
        3. set the sign bit
        4. store -4 in the exponent section
        5. store the normalized binary form




                                                                                                                                   0.1
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                             Conversion Error
      0 0 1 1 1 1 0 1 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0




                                                                                                                                   0.1
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                             Conversion Error
      0 0 1 1 1 1 0 1 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0
                         Now, let’s convert this back to decimal




                                                                                                                                   0.1
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                             Conversion Error
      0 0 1 1 1 1 0 1 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0
                         Now, let’s convert this back to decimal
        1. since the sign bit is 0, we know this is a positive number




                                                                                                                                   0.1
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                             Conversion Error
      0 0 1 1 1 1 0 1 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0
                         Now, let’s convert this back to decimal
        1. since the sign bit is 0, we know this is a positive number
        2. the exponent section is 01111011 (= 123)




                                                                                                                                   0.1
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                             Conversion Error
      0 0 1 1 1 1 0 1 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0
                         Now, let’s convert this back to decimal
        1. since the sign bit is 0, we know this is a positive number
        2. the exponent section is 01111011 (= 123)
        3. the decimal exponent is 123 - 127 = -4




                                                                                                                                   0.1
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                             Conversion Error
      0 0 1 1 1 1 0 1 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0
                         Now, let’s convert this back to decimal
        1. since the sign bit is 0, we know this is a positive number
        2. the exponent section is 01111011 (= 123)
        3. the decimal exponent is 123 - 127 = -4
        4. from the number section, we have 1.10011001100110011001100




                                                                                                                                   0.1
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                             Conversion Error
      0 0 1 1 1 1 0 1 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0
                         Now, let’s convert this back to decimal
        1. since the sign bit is 0, we know this is a positive number
        2. the exponent section is 01111011 (= 123)
        3. the decimal exponent is 123 - 127 = -4
        4. from the number section, we have 1.10011001100110011001100
        5. therefore the number is 1. 10011001100110011001100 x 2-4




                                                                                                                                   0.1
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                             Conversion Error
      0 0 1 1 1 1 0 1 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0
                         Now, let’s convert this back to decimal
        1. since the sign bit is 0, we know this is a positive number
        2. the exponent section is 01111011 (= 123)
        3. the decimal exponent is 123 - 127 = -4
        4. from the number section, we have 1.10011001100110011001100
        5. therefore the number is 1. 10011001100110011001100 x 2-4
        6. 1. 10011001100110011001100 = 1.59999990463 (approximately)




                                                                                                                                   0.1
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                             Conversion Error
      0 0 1 1 1 1 0 1 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0
                         Now, let’s convert this back to decimal
        1. since the sign bit is 0, we know this is a positive number
        2. the exponent section is 01111011 (= 123)
        3. the decimal exponent is 123 - 127 = -4
        4. from the number section, we have 1.10011001100110011001100
        5. therefore the number is 1. 10011001100110011001100 x 2-4
        6. 1. 10011001100110011001100 = 1.59999990463 (approximately)
        7. 1.59999990463 x 2-4 = 0.099999994



                                                                                                                                   0.1
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                             Conversion Error
      0 0 1 1 1 1 0 1 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0
                         Now, let’s convert this back to decimal
        1. since the sign bit is 0, we know this is a positive number
        2. the exponent section is 01111011 (= 123) This is a
        3. the decimal exponent is 123 - 127 = -4 conversion error:
        4. from the number section, we have 1.10011001100110011001100
                                                      0.099999994 ≠ 0.1
        5. therefore the number is 1. 10011001100110011001100 x 2-4
        6. 1. 10011001100110011001100 = 1.59999990463 (approximately)
        7. 1.59999990463 x 2-4 = 0.099999994



                                                                                                                                   0.1
 MATH1003

Mais conteúdo relacionado

Mais procurados

The 8051 microcontroller and embedded systems using assembly and c 2nd-ed
The 8051 microcontroller and embedded systems using assembly and c 2nd-edThe 8051 microcontroller and embedded systems using assembly and c 2nd-ed
The 8051 microcontroller and embedded systems using assembly and c 2nd-edĐinh Công Thiện Taydo University
 
4.4 diversity combining techniques
4.4   diversity combining techniques4.4   diversity combining techniques
4.4 diversity combining techniquesJAIGANESH SEKAR
 
Chapter 6m
Chapter 6mChapter 6m
Chapter 6mwafaa_A7
 
Multiplexer and DeMultiplexer
Multiplexer and DeMultiplexerMultiplexer and DeMultiplexer
Multiplexer and DeMultiplexerEstiak Khan
 
Fast Fourier Transform
Fast Fourier TransformFast Fourier Transform
Fast Fourier Transformop205
 
Circular convolution Using DFT Matlab Code
Circular convolution Using DFT Matlab CodeCircular convolution Using DFT Matlab Code
Circular convolution Using DFT Matlab CodeBharti Airtel Ltd.
 
Digital Communication: Channel Coding
Digital Communication: Channel CodingDigital Communication: Channel Coding
Digital Communication: Channel CodingDr. Sanjay M. Gulhane
 
Decimation in time and frequency
Decimation in time and frequencyDecimation in time and frequency
Decimation in time and frequencySARITHA REDDY
 
Time Division Multiplexing
Time Division MultiplexingTime Division Multiplexing
Time Division MultiplexingSpandit Lenka
 
Convolution codes and turbo codes
Convolution codes and turbo codesConvolution codes and turbo codes
Convolution codes and turbo codesManish Srivastava
 
frequency re use nb
frequency re use nbfrequency re use nb
frequency re use nbAJAL A J
 
SAMPLING & RECONSTRUCTION OF DISCRETE TIME SIGNAL
SAMPLING & RECONSTRUCTION  OF DISCRETE TIME SIGNALSAMPLING & RECONSTRUCTION  OF DISCRETE TIME SIGNAL
SAMPLING & RECONSTRUCTION OF DISCRETE TIME SIGNALkaran sati
 
Quick tutorial on IEEE 754 FLOATING POINT representation
Quick tutorial on IEEE 754 FLOATING POINT representationQuick tutorial on IEEE 754 FLOATING POINT representation
Quick tutorial on IEEE 754 FLOATING POINT representationRitu Ranjan Shrivastwa
 

Mais procurados (20)

The 8051 microcontroller and embedded systems using assembly and c 2nd-ed
The 8051 microcontroller and embedded systems using assembly and c 2nd-edThe 8051 microcontroller and embedded systems using assembly and c 2nd-ed
The 8051 microcontroller and embedded systems using assembly and c 2nd-ed
 
4.4 diversity combining techniques
4.4   diversity combining techniques4.4   diversity combining techniques
4.4 diversity combining techniques
 
Chapter 6m
Chapter 6mChapter 6m
Chapter 6m
 
Frequency translation
Frequency translationFrequency translation
Frequency translation
 
Multiplexer and DeMultiplexer
Multiplexer and DeMultiplexerMultiplexer and DeMultiplexer
Multiplexer and DeMultiplexer
 
Read & write
Read & writeRead & write
Read & write
 
Fast Fourier Transform
Fast Fourier TransformFast Fourier Transform
Fast Fourier Transform
 
Circular convolution Using DFT Matlab Code
Circular convolution Using DFT Matlab CodeCircular convolution Using DFT Matlab Code
Circular convolution Using DFT Matlab Code
 
Dif fft
Dif fftDif fft
Dif fft
 
ASk,FSK,PSK
ASk,FSK,PSKASk,FSK,PSK
ASk,FSK,PSK
 
Digital Communication: Channel Coding
Digital Communication: Channel CodingDigital Communication: Channel Coding
Digital Communication: Channel Coding
 
Decimation in time and frequency
Decimation in time and frequencyDecimation in time and frequency
Decimation in time and frequency
 
Time Division Multiplexing
Time Division MultiplexingTime Division Multiplexing
Time Division Multiplexing
 
Convolution codes and turbo codes
Convolution codes and turbo codesConvolution codes and turbo codes
Convolution codes and turbo codes
 
frequency re use nb
frequency re use nbfrequency re use nb
frequency re use nb
 
SAMPLING & RECONSTRUCTION OF DISCRETE TIME SIGNAL
SAMPLING & RECONSTRUCTION  OF DISCRETE TIME SIGNALSAMPLING & RECONSTRUCTION  OF DISCRETE TIME SIGNAL
SAMPLING & RECONSTRUCTION OF DISCRETE TIME SIGNAL
 
Computer arithmetic
Computer arithmeticComputer arithmetic
Computer arithmetic
 
Modulation
ModulationModulation
Modulation
 
Quick tutorial on IEEE 754 FLOATING POINT representation
Quick tutorial on IEEE 754 FLOATING POINT representationQuick tutorial on IEEE 754 FLOATING POINT representation
Quick tutorial on IEEE 754 FLOATING POINT representation
 
Huffman Coding
Huffman CodingHuffman Coding
Huffman Coding
 

Destaque

03 truncation errors
03 truncation errors03 truncation errors
03 truncation errorsmaheej
 
Engineering Numerical Analysis Lecture-1
Engineering Numerical Analysis Lecture-1Engineering Numerical Analysis Lecture-1
Engineering Numerical Analysis Lecture-1Muhammad Waqas
 
Introduction to Numerical Analysis
Introduction to Numerical AnalysisIntroduction to Numerical Analysis
Introduction to Numerical AnalysisMohammad Tawfik
 
Math1003 welcome-13 w
Math1003 welcome-13 wMath1003 welcome-13 w
Math1003 welcome-13 wgcmath1003
 
Math1003 1.4 - Number Systems
Math1003 1.4 - Number SystemsMath1003 1.4 - Number Systems
Math1003 1.4 - Number Systemsgcmath1003
 
Math1003 1.14 - Scientific Notation
Math1003 1.14 - Scientific NotationMath1003 1.14 - Scientific Notation
Math1003 1.14 - Scientific Notationgcmath1003
 
Math1003 1.1 - Sets of Numbers
Math1003 1.1 - Sets of NumbersMath1003 1.1 - Sets of Numbers
Math1003 1.1 - Sets of Numbersgcmath1003
 
Math1003 1.16 - Real Numbers
Math1003 1.16 - Real NumbersMath1003 1.16 - Real Numbers
Math1003 1.16 - Real Numbersgcmath1003
 
Math1003 1.5 - Decimal Number System
Math1003 1.5 - Decimal Number SystemMath1003 1.5 - Decimal Number System
Math1003 1.5 - Decimal Number Systemgcmath1003
 
Math1003 1.2 - Properties of Numbers
Math1003 1.2 - Properties of NumbersMath1003 1.2 - Properties of Numbers
Math1003 1.2 - Properties of Numbersgcmath1003
 
Math1003 1.6 - Binary Number System
Math1003 1.6 - Binary Number SystemMath1003 1.6 - Binary Number System
Math1003 1.6 - Binary Number Systemgcmath1003
 
Math1003 1.7 - Hexadecimal Number System
Math1003 1.7 - Hexadecimal Number SystemMath1003 1.7 - Hexadecimal Number System
Math1003 1.7 - Hexadecimal Number Systemgcmath1003
 
Math1003 1.8 - Converting from Binary and Hex to Decimal
Math1003 1.8 - Converting from Binary and Hex to DecimalMath1003 1.8 - Converting from Binary and Hex to Decimal
Math1003 1.8 - Converting from Binary and Hex to Decimalgcmath1003
 
Math1003 1.12 - Binary Addition
Math1003 1.12 - Binary AdditionMath1003 1.12 - Binary Addition
Math1003 1.12 - Binary Additiongcmath1003
 
Applied numerical methods lec3
Applied numerical methods lec3Applied numerical methods lec3
Applied numerical methods lec3Yasser Ahmed
 
Math1003 - An Intro to Number Systems
Math1003 - An Intro to Number SystemsMath1003 - An Intro to Number Systems
Math1003 - An Intro to Number Systemsgcmath1003
 
Math1003 1.10 - Binary to Hex Conversion
Math1003 1.10 - Binary to Hex ConversionMath1003 1.10 - Binary to Hex Conversion
Math1003 1.10 - Binary to Hex Conversiongcmath1003
 

Destaque (20)

03 truncation errors
03 truncation errors03 truncation errors
03 truncation errors
 
Engineering Numerical Analysis Lecture-1
Engineering Numerical Analysis Lecture-1Engineering Numerical Analysis Lecture-1
Engineering Numerical Analysis Lecture-1
 
Numerical method
Numerical methodNumerical method
Numerical method
 
Introduction to Numerical Analysis
Introduction to Numerical AnalysisIntroduction to Numerical Analysis
Introduction to Numerical Analysis
 
Math1003 welcome-13 w
Math1003 welcome-13 wMath1003 welcome-13 w
Math1003 welcome-13 w
 
Math1003 1.4 - Number Systems
Math1003 1.4 - Number SystemsMath1003 1.4 - Number Systems
Math1003 1.4 - Number Systems
 
Math1003 1.14 - Scientific Notation
Math1003 1.14 - Scientific NotationMath1003 1.14 - Scientific Notation
Math1003 1.14 - Scientific Notation
 
Math1003 1.1 - Sets of Numbers
Math1003 1.1 - Sets of NumbersMath1003 1.1 - Sets of Numbers
Math1003 1.1 - Sets of Numbers
 
Math1003 1.16 - Real Numbers
Math1003 1.16 - Real NumbersMath1003 1.16 - Real Numbers
Math1003 1.16 - Real Numbers
 
Math1003 1.5 - Decimal Number System
Math1003 1.5 - Decimal Number SystemMath1003 1.5 - Decimal Number System
Math1003 1.5 - Decimal Number System
 
Math1003 1.2 - Properties of Numbers
Math1003 1.2 - Properties of NumbersMath1003 1.2 - Properties of Numbers
Math1003 1.2 - Properties of Numbers
 
Math1003 1.6 - Binary Number System
Math1003 1.6 - Binary Number SystemMath1003 1.6 - Binary Number System
Math1003 1.6 - Binary Number System
 
heat
heatheat
heat
 
Math1003 1.7 - Hexadecimal Number System
Math1003 1.7 - Hexadecimal Number SystemMath1003 1.7 - Hexadecimal Number System
Math1003 1.7 - Hexadecimal Number System
 
Es272 ch2
Es272 ch2Es272 ch2
Es272 ch2
 
Math1003 1.8 - Converting from Binary and Hex to Decimal
Math1003 1.8 - Converting from Binary and Hex to DecimalMath1003 1.8 - Converting from Binary and Hex to Decimal
Math1003 1.8 - Converting from Binary and Hex to Decimal
 
Math1003 1.12 - Binary Addition
Math1003 1.12 - Binary AdditionMath1003 1.12 - Binary Addition
Math1003 1.12 - Binary Addition
 
Applied numerical methods lec3
Applied numerical methods lec3Applied numerical methods lec3
Applied numerical methods lec3
 
Math1003 - An Intro to Number Systems
Math1003 - An Intro to Number SystemsMath1003 - An Intro to Number Systems
Math1003 - An Intro to Number Systems
 
Math1003 1.10 - Binary to Hex Conversion
Math1003 1.10 - Binary to Hex ConversionMath1003 1.10 - Binary to Hex Conversion
Math1003 1.10 - Binary to Hex Conversion
 

Mais de gcmath1003

Math1003 1.4 - Order of Operations
Math1003 1.4 - Order of OperationsMath1003 1.4 - Order of Operations
Math1003 1.4 - Order of Operationsgcmath1003
 
Math1003 1.15 - Integers and 2's Complement
Math1003 1.15 - Integers and 2's ComplementMath1003 1.15 - Integers and 2's Complement
Math1003 1.15 - Integers and 2's Complementgcmath1003
 
Math1003 1.13 - Significant Digits, Accuracy, Precision
Math1003 1.13 - Significant Digits, Accuracy, PrecisionMath1003 1.13 - Significant Digits, Accuracy, Precision
Math1003 1.13 - Significant Digits, Accuracy, Precisiongcmath1003
 
Math1003 1.11 - Hex to Binary Conversion
Math1003 1.11 - Hex to Binary ConversionMath1003 1.11 - Hex to Binary Conversion
Math1003 1.11 - Hex to Binary Conversiongcmath1003
 
Math1003 1.9 - Converting Decimal to Binary and Hex
Math1003 1.9 - Converting Decimal to Binary and HexMath1003 1.9 - Converting Decimal to Binary and Hex
Math1003 1.9 - Converting Decimal to Binary and Hexgcmath1003
 
Math1003 1.3 - Exponents
Math1003 1.3 - ExponentsMath1003 1.3 - Exponents
Math1003 1.3 - Exponentsgcmath1003
 

Mais de gcmath1003 (6)

Math1003 1.4 - Order of Operations
Math1003 1.4 - Order of OperationsMath1003 1.4 - Order of Operations
Math1003 1.4 - Order of Operations
 
Math1003 1.15 - Integers and 2's Complement
Math1003 1.15 - Integers and 2's ComplementMath1003 1.15 - Integers and 2's Complement
Math1003 1.15 - Integers and 2's Complement
 
Math1003 1.13 - Significant Digits, Accuracy, Precision
Math1003 1.13 - Significant Digits, Accuracy, PrecisionMath1003 1.13 - Significant Digits, Accuracy, Precision
Math1003 1.13 - Significant Digits, Accuracy, Precision
 
Math1003 1.11 - Hex to Binary Conversion
Math1003 1.11 - Hex to Binary ConversionMath1003 1.11 - Hex to Binary Conversion
Math1003 1.11 - Hex to Binary Conversion
 
Math1003 1.9 - Converting Decimal to Binary and Hex
Math1003 1.9 - Converting Decimal to Binary and HexMath1003 1.9 - Converting Decimal to Binary and Hex
Math1003 1.9 - Converting Decimal to Binary and Hex
 
Math1003 1.3 - Exponents
Math1003 1.3 - ExponentsMath1003 1.3 - Exponents
Math1003 1.3 - Exponents
 

Último

SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxAmanpreet Kaur
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structuredhanjurrannsibayan2
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentationcamerronhm
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the ClassroomPooky Knightsmith
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...pradhanghanshyam7136
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSCeline George
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxEsquimalt MFRC
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701bronxfugly43
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsKarakKing
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Jisc
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and ModificationsMJDuyan
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin ClassesCeline George
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxcallscotland1987
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxVishalSingh1417
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 

Último (20)

SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptx
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 

Math1003 1.17 - Truncation, Rounding, Overflow, & Conversion Error