Page 61 - ComputerScience_Class_11
P. 61

Decimal         Octal      Hexadecimal       Binary         Value
                                     096            140            060          01100000          `
                                     097            141            061          01100001          a
                                     098            142            062          01100010          b
                                     099            143            063          01100011          c
                                     100            144            064          01100100          d
                                     101            145            065          01100101          e
                                     102            146            066          01100110          f
                                     103            147            067          01100111          g
                                     104            150            068          01101000          h
                                     105            151            069          01101001          i
                                     106            152            06A          01101010           j
                                     107            153            06B          01101011          k
                                     108            154            06C          01101100          l
                                     109            155            06D          01101101          m
                                     110            156            06E          01101110          n
                                     111            157            06F          01101111          o
                                     112            160            070          01110000          p
                                     113            161            071          01110001          q
                                     114            162            072          01110010          r
                                     115            163            073          01110011          s
                                     116            164            074          01110100          t
                                     117            165            075          01110101          u
                                     118            166            076          01110110          v
                                     119            167            077          01110111          w
                                     120            170            078          01111000          x
                                     121            171            079          01111001          y
                                     122            172            07A          01111010          z
                                     123            173            07B          01111011          {
                                     124            174            07C          01111100          |
                                     125            175            07D          01111101          }
                                     126            176            07E          01111110          ~
                                     127            177            07F          01111111         DEL

                       Note: • The ASCII code characters  from 0 to 31 are  unprintable control characters used to control hardware.
                             • 32 represents space which is included in printable characters.
                             • 33 to 126 are all printable characters.
                             • 127 represents delete which is a control character.

                 ASCII representation of a word is given with an example:

                 Example 1: Represent INDIA in binary code.
                 Answer:                       ASCII code of  I  =  73
                                                          N  =  78
                                                          D  =  68
                                                           I  =  73
                                                           A  =  65

                 Representing in binary notation 1001001 1001110 1000100 1001001 1000001.



                                                                                                        Encodings  59
   56   57   58   59   60   61   62   63   64   65   66