SlideShare a Scribd company logo
1 of 16
NUMBER SYSTEM
Made BY : Raman, Quais, Nikhil / Class : IX-A
MATHS PROJECT WORK
 Types of Number
 ASCII
 BINARY
 DECIMAL
 OCTAL
 HEXADECIMAL
 FRACTIONAL
 CONVERSIONS
 Natural number – 1, 2, 3, 4……..n
 Whole number - It is collection of Natural number along
with 0 (0, 1, 2, 3, 4…….n)
 Integers - It is collection of whole Number along with
negative numbers (-n……-3, -2, -1, 0, 1, 2, 3…….n)
 Rational numbers- Any number which can be expressed
in form of p/q where p and q are intefers and q is not
equal to 0 is known as Rational numbers (3/4, -3/9, 2)
 Irrational numbers - Any number which cannot be
expressed in form of p/q where p and q are intefers and q
is not equal to 0 is known as Irrational numbers ( 2 ,
5 )
ASCII
 American Standard Code for Information Interchange
 ASCII is a code for representing English characters as numbers, with each
letter assigned a number from 0 to 127. For example, the ASCII code for
uppercase M is 77. Most computers use ASCII codes to represent text, which
makes it possible to transfer data from one computer to another.
 Text files stored in ASCII format are sometimes called ASCII files. Text editors
and word processors are usually capable of storing data in ASCII format .
 Numeric data files or Executable programs are never stored in ASCII format.
BINARY System
 A method of representing numbers in which only the digits 0 and 1 are used.
Successive units are powers of 2 .
 The first ten numbers in binary notation, corresponding to the numbers 0, 1,
2, 3, 4, 5, 6, 7, 8, and 9 in decimal notation, are 0, 1, 10, 11, 100, 101, 110,
111, 1000, and 1001.
 The decimal equivalent of a binary number can be calculated by adding
together each digit multiplied by its power of 2; for example, the
binary number 1011010 corresponds to (1 × 26
) + (0 × 25
) + (1 × 24
) +
(1 × 23
) + (0 × 22
) + (1 × 21
) + (0 × 20
) = 64 + 0 + 16 + 8 + 0 + 2 + 0 = 90 in the
decimal system.
DECIMAL System
 Decimal system is a way of writing numbers. Any number, from huge
quantities to tiny fractions, can be written in the decimal system using only
the ten basic symbols 1, 2, 3, 4, 5, 6, 7, 8, 9, and 0.
 The value of any of these symbols dep ends on the place it occupies in the
number.
 Example : 258610 = (2X1000)+(5X100)+(8X10)+(6X1)
or
2X103 + 5X102 + 8X101 + 6X100
OCTAL System
 The octal, or base 8, number system is a common system used with
computers. Because of its relationship with the binary system.
 It is useful in programming some types of computers.
 One octal digit is the equivalent value of three binary digits.
 Example : 5628 = 5X82
+ 6X81
+ 2X80
= 320 + 48 + 2
= 37010
HEXADECIMAL System
 It is number system having a base 16; the symbols for the numbers 0--9 are
the same as those used in the decimal system, and the numbers 10--15 are
usually represented by the letters A--F.
 The system is used as a convenient way of representing the internal binary
code of a computer.
 Example : 2A3B16 = 2x163
+ A(10)x162
+ 3x161
+ B(11)X160
= 8192 + 2560 + 48+ 11
= 1081110
FRACTIONAL System
 The decimal system uses powers of 10 to determine the value of a position.
The binary system uses powers of 2 to determine the value of a position.
 All numbers or values to the left of the radix point are whole numbers, and
all numbers to the right of the radix point are fractional numbers.
 Example : Binary no. 101.12 = 1x22
+ 0x21
+ 1x20
+ 1x2-1
= 4 + 0 + 1 +.5
=5.510
CONVERSIONS
 Decimal to Binary Number
We will take the number 29 and divide it by 2 until the answer reaches 0 and where
there is a remainder we write one (1) where there is no remainder we write zero (0).
470610 =1001011000102
2910 = 111012
CONVERSIONS
 Decimal to Octal Number
250210 = 47068
CONVERSIONS
 Decimal to Hexadecimal Number
42810 = 1AC16
CONVERSIONS
 Binary to Decimal Number
110012 = 1x24 + 1x23 + 0x22 + 0x21 + 1x20
= 16 + 8 + 0 + 0 + 1
= 25110
101010102 = 1x27 + 0x26 + 1x25 + 0x24 + 1x23 + 0x22 + 1x21 + 0x20
= 128 + 0 + 32 + 0+ 8 + 0 + 2 + 0
= 17010
CONVERSIONS
 Octal and Hexadecimal to Decimal Number
Octal :
5628 = 5x82 + 6x81 + 2x80
= 320 + 48 + 2
= 37010
Hexadecimal :
 2A3B16 = 2x163
+ A(10)x162
+ 3x161
+ B(11)X160
= 8192 + 2560 + 48+ 11
= 1081110
CONVERSIONS
 Fractional to Decimal Number
Binary to Decimal:
110.1012 = 1x22 + 1x21 + 0x20 + 1x2-1 + 0x2-2 + 1x2-3
= 4 + 2 + 0 + .5 + 0 + .125
=6.62510
Octal to Decimal:
127.5488 = 1x82 + 2x81 + 7x80 + 5x8-1 + 4x8-2 + 8x8-3
= 64 + 16 + 7 + 5/8 + 4/64
= 87 + 0.625 + 0.0625
= 87.687510
Hexadecimal to Decimal :
2B.C416 = 2x161 + B(11)x160 + C(12)x16-1 + 4x16-2
= 32 + 11 + 12/16 + 4/256
= 43 + 0.75 + 0.015625
= 43.76565210
THANK YOU

More Related Content

What's hot (20)

Number system
Number systemNumber system
Number system
 
NUMBER SYSTEM
NUMBER SYSTEMNUMBER SYSTEM
NUMBER SYSTEM
 
Number system
Number systemNumber system
Number system
 
Number system by ammar nawab
Number system by ammar nawabNumber system by ammar nawab
Number system by ammar nawab
 
Chapter 1: Binary System
 Chapter 1: Binary System Chapter 1: Binary System
Chapter 1: Binary System
 
number system
number systemnumber system
number system
 
Number system
Number systemNumber system
Number system
 
Number System in CoMpUtEr
Number System in CoMpUtErNumber System in CoMpUtEr
Number System in CoMpUtEr
 
Number System (Binary,octal,Decimal,Hexadecimal)
Number System (Binary,octal,Decimal,Hexadecimal)Number System (Binary,octal,Decimal,Hexadecimal)
Number System (Binary,octal,Decimal,Hexadecimal)
 
Decimal number system
Decimal number systemDecimal number system
Decimal number system
 
Conversion binary to decimal
Conversion binary to decimalConversion binary to decimal
Conversion binary to decimal
 
Number System
Number SystemNumber System
Number System
 
binary number system
 binary number system binary number system
binary number system
 
Number Systems
Number SystemsNumber Systems
Number Systems
 
Number Systems Basic Concepts
Number Systems Basic ConceptsNumber Systems Basic Concepts
Number Systems Basic Concepts
 
Binary ppt tr
Binary ppt trBinary ppt tr
Binary ppt tr
 
Mrs. Noland's Binary System ppt
Mrs. Noland's Binary System pptMrs. Noland's Binary System ppt
Mrs. Noland's Binary System ppt
 
Topic 1 Data Representation
Topic 1 Data RepresentationTopic 1 Data Representation
Topic 1 Data Representation
 
08. Numeral Systems
08. Numeral Systems08. Numeral Systems
08. Numeral Systems
 
Chapter iii: Number System
Chapter iii: Number SystemChapter iii: Number System
Chapter iii: Number System
 

Viewers also liked

Tabela asc ii completa
Tabela asc ii completaTabela asc ii completa
Tabela asc ii completajonh132
 
10 hexadecimal number system
10   hexadecimal number system10   hexadecimal number system
10 hexadecimal number systemLee Chadwick
 
The 7 c,s of communication
The 7 c,s of communicationThe 7 c,s of communication
The 7 c,s of communicationSoban Ahmad
 
INTERNET WORKING AND ITS FEATURES
INTERNET WORKING AND ITS FEATURESINTERNET WORKING AND ITS FEATURES
INTERNET WORKING AND ITS FEATURESManeeshMathur
 
Number system utm notes
Number system utm notesNumber system utm notes
Number system utm notesKurenai Ryu
 
Transmission media presentation
Transmission media presentationTransmission media presentation
Transmission media presentationbabak danyal
 
Codigo Ascii
Codigo AsciiCodigo Ascii
Codigo Asciinelson
 
Internet features (2nd topic)
Internet features (2nd topic)Internet features (2nd topic)
Internet features (2nd topic)Anish Thomas
 
Compare CD vs DVD
Compare CD vs DVDCompare CD vs DVD
Compare CD vs DVDPratik Vyas
 
Diff intranet and extranet
Diff intranet and extranetDiff intranet and extranet
Diff intranet and extranetNadeem Khazi
 
Features Of The Internet
Features Of The InternetFeatures Of The Internet
Features Of The Internetkimromero
 
Computer basic operations
Computer basic operationsComputer basic operations
Computer basic operationsHotimah Kusuma
 

Viewers also liked (20)

Ascii
AsciiAscii
Ascii
 
Códigos BCD, Gray e ASCII
Códigos  BCD, Gray e ASCIICódigos  BCD, Gray e ASCII
Códigos BCD, Gray e ASCII
 
Bcd
BcdBcd
Bcd
 
Tabela asc ii completa
Tabela asc ii completaTabela asc ii completa
Tabela asc ii completa
 
10 hexadecimal number system
10   hexadecimal number system10   hexadecimal number system
10 hexadecimal number system
 
ASCII
ASCIIASCII
ASCII
 
The 7 c,s of communication
The 7 c,s of communicationThe 7 c,s of communication
The 7 c,s of communication
 
INTERNET WORKING AND ITS FEATURES
INTERNET WORKING AND ITS FEATURESINTERNET WORKING AND ITS FEATURES
INTERNET WORKING AND ITS FEATURES
 
Number system utm notes
Number system utm notesNumber system utm notes
Number system utm notes
 
Transmission media presentation
Transmission media presentationTransmission media presentation
Transmission media presentation
 
Codigo Ascii
Codigo AsciiCodigo Ascii
Codigo Ascii
 
Cd rom
Cd romCd rom
Cd rom
 
Internet features (2nd topic)
Internet features (2nd topic)Internet features (2nd topic)
Internet features (2nd topic)
 
Ascii 03
Ascii 03Ascii 03
Ascii 03
 
Compare CD vs DVD
Compare CD vs DVDCompare CD vs DVD
Compare CD vs DVD
 
Diff intranet and extranet
Diff intranet and extranetDiff intranet and extranet
Diff intranet and extranet
 
Features Of The Internet
Features Of The InternetFeatures Of The Internet
Features Of The Internet
 
Computer basic operations
Computer basic operationsComputer basic operations
Computer basic operations
 
Number system 1
Number system 1Number system 1
Number system 1
 
Compilers
CompilersCompilers
Compilers
 

Similar to Number system (20)

Computer Number system
Computer Number systemComputer Number system
Computer Number system
 
numbersystem-211022083557.pdf
numbersystem-211022083557.pdfnumbersystem-211022083557.pdf
numbersystem-211022083557.pdf
 
Module 1 number systems and code1
Module 1  number systems and code1Module 1  number systems and code1
Module 1 number systems and code1
 
Chapter two FHI.pptx
Chapter two FHI.pptxChapter two FHI.pptx
Chapter two FHI.pptx
 
Number systems
Number systemsNumber systems
Number systems
 
NUMBER SYSTEM.pptx
NUMBER SYSTEM.pptxNUMBER SYSTEM.pptx
NUMBER SYSTEM.pptx
 
Grade5(Test 2).pptx
Grade5(Test 2).pptxGrade5(Test 2).pptx
Grade5(Test 2).pptx
 
Data representation
Data representationData representation
Data representation
 
NUMBER SYSTEM.pptx
NUMBER SYSTEM.pptxNUMBER SYSTEM.pptx
NUMBER SYSTEM.pptx
 
Number Systems
Number SystemsNumber Systems
Number Systems
 
Number system
Number systemNumber system
Number system
 
Okkkkk
OkkkkkOkkkkk
Okkkkk
 
W 9 numbering system
W 9 numbering systemW 9 numbering system
W 9 numbering system
 
W 9 numbering system
W 9 numbering systemW 9 numbering system
W 9 numbering system
 
Digital Electronics Notes.pdf
Digital Electronics Notes.pdfDigital Electronics Notes.pdf
Digital Electronics Notes.pdf
 
PPT_Module_1.pptx
PPT_Module_1.pptxPPT_Module_1.pptx
PPT_Module_1.pptx
 
Number_Systems (2).ppt
Number_Systems (2).pptNumber_Systems (2).ppt
Number_Systems (2).ppt
 
LEfddfffhhfrrdvvggfdwfcxsfvdsfgC 02 A.pptx
LEfddfffhhfrrdvvggfdwfcxsfvdsfgC 02 A.pptxLEfddfffhhfrrdvvggfdwfcxsfvdsfgC 02 A.pptx
LEfddfffhhfrrdvvggfdwfcxsfvdsfgC 02 A.pptx
 
Chapter 2.1 introduction to number system
Chapter 2.1 introduction to number systemChapter 2.1 introduction to number system
Chapter 2.1 introduction to number system
 
Data representation
Data representationData representation
Data representation
 

Recently uploaded

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
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfNirmal Dwivedi
 
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
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
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
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
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
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024Elizabeth Walsh
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseAnaAcapella
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...Poonam Aher Patil
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsMebane Rash
 
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
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
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
 
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
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 

Recently uploaded (20)

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
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
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
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
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
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
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
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
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
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
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
 
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
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 

Number system

  • 1. NUMBER SYSTEM Made BY : Raman, Quais, Nikhil / Class : IX-A MATHS PROJECT WORK
  • 2.  Types of Number  ASCII  BINARY  DECIMAL  OCTAL  HEXADECIMAL  FRACTIONAL  CONVERSIONS
  • 3.  Natural number – 1, 2, 3, 4……..n  Whole number - It is collection of Natural number along with 0 (0, 1, 2, 3, 4…….n)  Integers - It is collection of whole Number along with negative numbers (-n……-3, -2, -1, 0, 1, 2, 3…….n)  Rational numbers- Any number which can be expressed in form of p/q where p and q are intefers and q is not equal to 0 is known as Rational numbers (3/4, -3/9, 2)  Irrational numbers - Any number which cannot be expressed in form of p/q where p and q are intefers and q is not equal to 0 is known as Irrational numbers ( 2 , 5 )
  • 4. ASCII  American Standard Code for Information Interchange  ASCII is a code for representing English characters as numbers, with each letter assigned a number from 0 to 127. For example, the ASCII code for uppercase M is 77. Most computers use ASCII codes to represent text, which makes it possible to transfer data from one computer to another.  Text files stored in ASCII format are sometimes called ASCII files. Text editors and word processors are usually capable of storing data in ASCII format .  Numeric data files or Executable programs are never stored in ASCII format.
  • 5. BINARY System  A method of representing numbers in which only the digits 0 and 1 are used. Successive units are powers of 2 .  The first ten numbers in binary notation, corresponding to the numbers 0, 1, 2, 3, 4, 5, 6, 7, 8, and 9 in decimal notation, are 0, 1, 10, 11, 100, 101, 110, 111, 1000, and 1001.  The decimal equivalent of a binary number can be calculated by adding together each digit multiplied by its power of 2; for example, the binary number 1011010 corresponds to (1 × 26 ) + (0 × 25 ) + (1 × 24 ) + (1 × 23 ) + (0 × 22 ) + (1 × 21 ) + (0 × 20 ) = 64 + 0 + 16 + 8 + 0 + 2 + 0 = 90 in the decimal system.
  • 6. DECIMAL System  Decimal system is a way of writing numbers. Any number, from huge quantities to tiny fractions, can be written in the decimal system using only the ten basic symbols 1, 2, 3, 4, 5, 6, 7, 8, 9, and 0.  The value of any of these symbols dep ends on the place it occupies in the number.  Example : 258610 = (2X1000)+(5X100)+(8X10)+(6X1) or 2X103 + 5X102 + 8X101 + 6X100
  • 7. OCTAL System  The octal, or base 8, number system is a common system used with computers. Because of its relationship with the binary system.  It is useful in programming some types of computers.  One octal digit is the equivalent value of three binary digits.  Example : 5628 = 5X82 + 6X81 + 2X80 = 320 + 48 + 2 = 37010
  • 8. HEXADECIMAL System  It is number system having a base 16; the symbols for the numbers 0--9 are the same as those used in the decimal system, and the numbers 10--15 are usually represented by the letters A--F.  The system is used as a convenient way of representing the internal binary code of a computer.  Example : 2A3B16 = 2x163 + A(10)x162 + 3x161 + B(11)X160 = 8192 + 2560 + 48+ 11 = 1081110
  • 9. FRACTIONAL System  The decimal system uses powers of 10 to determine the value of a position. The binary system uses powers of 2 to determine the value of a position.  All numbers or values to the left of the radix point are whole numbers, and all numbers to the right of the radix point are fractional numbers.  Example : Binary no. 101.12 = 1x22 + 0x21 + 1x20 + 1x2-1 = 4 + 0 + 1 +.5 =5.510
  • 10. CONVERSIONS  Decimal to Binary Number We will take the number 29 and divide it by 2 until the answer reaches 0 and where there is a remainder we write one (1) where there is no remainder we write zero (0). 470610 =1001011000102 2910 = 111012
  • 11. CONVERSIONS  Decimal to Octal Number 250210 = 47068
  • 12. CONVERSIONS  Decimal to Hexadecimal Number 42810 = 1AC16
  • 13. CONVERSIONS  Binary to Decimal Number 110012 = 1x24 + 1x23 + 0x22 + 0x21 + 1x20 = 16 + 8 + 0 + 0 + 1 = 25110 101010102 = 1x27 + 0x26 + 1x25 + 0x24 + 1x23 + 0x22 + 1x21 + 0x20 = 128 + 0 + 32 + 0+ 8 + 0 + 2 + 0 = 17010
  • 14. CONVERSIONS  Octal and Hexadecimal to Decimal Number Octal : 5628 = 5x82 + 6x81 + 2x80 = 320 + 48 + 2 = 37010 Hexadecimal :  2A3B16 = 2x163 + A(10)x162 + 3x161 + B(11)X160 = 8192 + 2560 + 48+ 11 = 1081110
  • 15. CONVERSIONS  Fractional to Decimal Number Binary to Decimal: 110.1012 = 1x22 + 1x21 + 0x20 + 1x2-1 + 0x2-2 + 1x2-3 = 4 + 2 + 0 + .5 + 0 + .125 =6.62510 Octal to Decimal: 127.5488 = 1x82 + 2x81 + 7x80 + 5x8-1 + 4x8-2 + 8x8-3 = 64 + 16 + 7 + 5/8 + 4/64 = 87 + 0.625 + 0.0625 = 87.687510 Hexadecimal to Decimal : 2B.C416 = 2x161 + B(11)x160 + C(12)x16-1 + 4x16-2 = 32 + 11 + 12/16 + 4/256 = 43 + 0.75 + 0.015625 = 43.76565210