SlideShare ist ein Scribd-Unternehmen logo
1 von 24
Downloaden Sie, um offline zu lesen
DATA REPRESENTATION
CONVERSION
NUMBER SYSTEM
Decimal Number System
Binary Number System
Octal Number System
Hexadecimal Number System
Decimal Number System
 The decimal system is composed of 1- numerals or
symbols (Deca means 10, that is why this is called decimal
system). These 10 symbols are 0,1,2,3,4,5,6,7,8,9 ; using
these symbols as digit as number, we can express any
quantity. The decimal system, also called the base-10
system
Binary Number System
 Binary System, there are only two symbols or possible
digit values, 0 and 1. This base-2 system can be used to
represent any quantity that can be represented in
decimal or other number systems.
 The Binary system is also a positional-value system,
wherein each binary digit has its own value expressed as
a power of 2.
Octal Number System
 The Octal number system is very important in digital
computer work. The octal number system has a base of
eight, meaning that it has eight unique symbols :
0,1,2,3,4,5,6,7 . Thus each digit of an octal number can
have any value from 0 to 7.
 The octal system is a positional value system, wherein
each octal digit has its own value expressed as a power of
8.
Hexadecimal Number System
 The Hexadecimal System uses base 16. Thus, it has 16
possible digit symbols. It uses the digits 0 – 9 and the
letter A, B, C, D, E & F as the 16 digit symbols.
 Hexadecimal is a positional value System has its own
value expressed as a power of 16.
NUMBER CONVERSIONS
CONVERSIONS WITH BINARY
Decimal To Binary
Decimal Fraction To Binary
Binary To Decimal
Binary Fraction To Decimal
Decimal To Binary
 To converting decimal to Binary we use Repeated division
method. In this the no. is successively divide by 2 and its
remainder recorded.
 For Example convert decimal to Binary 4310
2 43
2 21 1
2 10 1
2 5 0
2 2 1
2 1 0
1 1
CONVERSIONS WITH BINARY
WRITE IN
THIS ORDER
From Down to Up
Your Answer 4310
= 1010112
Decimal Fraction To Binary
 To Convert a decimal fraction into binary, multiply the
decimal fraction by the base that’s 2. Do untill you will
get zero at fractional part.
 For Example Convert 0.37510 to Binary Integer Part
Multiply(fractional part)0.375 * 2 = 0.750 0
0.75 * 2 = 1.50 1
0.50 * 2 = 1.00 1
Your Answer is 0.37510 = 0.0112
Write
From
Up to
Down
CONVERSIONS WITH BINARY
Binary To Decimal
 To convert Binary to Decimal, Add positional weights or
values with power of 2 start from right side.
 For Example Convert 11011 to Decimal.
24 23 22 21 20
1 * 24 + 1 * 23 + 0 * 22 + 1 * 21 + 1 * 20
= 16 + 8 + 0 + 2 + 1
= 2710 (decimal)
1 1 0 1 1
CONVERSIONS WITH BINARY
Binary Fraction To Decimal
 To find binary fraction, take the sum of products of each
digit value (0 – 1) and its positional value. Starts from left
side.
 For Example convert 0.0101 to Decimal.
2-1 2-2 2-3 2-4
0 * 2-1 + 1 * 2-2 + 0 * 2-3 + 1 * 2-4
= 0 + 0.25 + 0 + 0.0625
0.01012 = 0.312510 (decimal)
CONVERSIONS WITH BINARY
. 0 1 0 1
NUMBER CONVERSIONS
CONVERSIONS WITH OCTAL
Decimal To Octal
Decimal Fraction To Octal
Octal To Decimal
Octal To Binary
Binary To Octal
Decimal To Octal
 A decimal integer can be converted to octal by
repeated-division method with division factor of 8.
 Example Convert 26610 to Octal
remainder
8 266 2
8 33 1
8 4 4
0
26610 = 4128
WRITE IN
THIS ORDER
From Down to Up
CONVERSIONS WITH OCTAL
Decimal Fraction To Octal
 To convert Decimal fraction into Octal, multiply
fractional part with 8 till you get fractional part 0.
 Example : convert 0.37510 to Octal
Integer Part
0.375 * 8 = 3.0 3
 0.37510 = 0.38
CONVERSIONS WITH OCTAL
Write
From
Up to
Down
Octal To Decimal
 It can easily converted into decimal by multiplying
each octal digit by its positional weight.
 For Example 3728 to Decimal
82 81 80
3 * 82 + 7 * 81 + 2 * 80
= 3 * 64 + 7 * 8 + 2 * 1
= 25010
CONVERSIONS WITH OCTAL
3 7 2
Octal To Binary
 To convert Octal To Binary is easy. This converting is
performed by converting each octal digit to its 3 bit
binary. Possible digits converted as indicated in Table
 Example : 4728 to binary
From table , 4 = 100 , 7 = 111 & 2 = 010
We get 4728 = 1001110102
CONVERSIONS WITH OCTAL
Octal
Digit
0 1 2 3 4 5 6 7
Binary 000 001 010 011 100 101 110 111
Binary To Octal
 Its simply the reverse of octal to binary. Make the three
bits group starting from LSB. Then convert it with
using Table
 For Example: 110101102 to Octal
Make group of three 011 , 010 & 110
011 = 3 , 010 = 2 & 110 = 6
110101102 = 3268
CONVERSIONS WITH OCTAL
Octal
Digit
0 1 2 3 4 5 6 7
Binary 000 001 010 011 100 101 110 111
Add Zero
To Make it
group of
3 bit.
NUMBER CONVERSIONS
CONVERSIONS WITH HEX
Decimal To HEX
Decimal Fraction To HEX
HEX To Decimal
HEX To Binary
Binary To HEX
Decimal To HEX
 A decimal integer can be converted to hex by repeated-
division method with division factor of 16.
 Example Convert 26610 to Hex
remainder
16 423 7
16 26 A
16 1 1
0
42310 = 1A716
1010 = A16
WRITE IN
THIS ORDER
From Down to Up
CONVERSIONS WITH HEX
Decimal Fraction To Hex
 To convert Decimal fraction into Hex, multiply
fractional part with 16 till you get fractional part 0.
 Example : convert 0.0312510 to Hex
Integer Part
0. 03125 * 16 =0.5 0
0. 5 * 16 = 8.0 8
 0.0312510 = 0.0816
CONVERSIONS WITH HEX
Write
From
Up to
Down
HEX To Decimal
 It can easily converted into decimal by multiplying
each Hex digit by its positional weight has power of 16.
 For Example 2AF16 to Decimal
162 161 160
2 * 162 + A * 161 + F * 160
= 2 * 256 + 10 * 8 + 15 * 1
= 60710
CONVERSIONS WITH HEX
2 A F
Decimal Hex
0 0
1 1
2 2
3 3
4 4
5 5
6 6
7 7
Decimal Hex
8 8
9 9
10 A
11 B
12 C
13 D
14 E
15 F
HEX To Binary
 To convert Hex To Binary is easy. This converting is
performed by converting each hex digit to its 4 bit
binary. Possible digits converted as indicated in Table
Example : 3A616 to binary
From table, 3 = 0011 ,
A = 1010 & 6 = 0110
We get 3A616 = 0011101001102
CONVERSIONS WITH HEX
Binary Hex
0000 0
0001 1
0010 2
0011 3
0100 4
0101 5
0110 6
0111 7
Binary Hex
1000 8
1001 9
1010 A
1011 B
1100 C
1101 D
1110 E
1111 F
Binary To HEX
 Its simply the reverse of Hex to binary. Make the four
bits group starting from LSB. Then convert it with
using Table
 For Example: 10101110102 to Hex
Make group of four 0010
, 1011 & 1010
0010 = 2 , 1011 = B & 1010 = A
10101110102 = 2BA16
CONVERSIONS WITH HEX
Add Zero to Make it
group of 4 bit.
Binary Hex
0000 0
0001 1
0010 2
0011 3
0100 4
0101 5
0110 6
0111 7
Binary Hex
1000 8
1001 9
1010 A
1011 B
1100 C
1101 D
1110 E
1111 F
005618132.pdf

Weitere ähnliche Inhalte

Ähnlich wie 005618132.pdf

DATA REPRESENTATION.pptx
DATA REPRESENTATION.pptxDATA REPRESENTATION.pptx
DATA REPRESENTATION.pptxMamataAnilgod
 
Chapter 2 Data Representation on CPU (part 1)
Chapter 2 Data Representation on CPU (part 1)Chapter 2 Data Representation on CPU (part 1)
Chapter 2 Data Representation on CPU (part 1)Frankie Jones
 
Number System and Conversions.pptx
Number System and Conversions.pptxNumber System and Conversions.pptx
Number System and Conversions.pptxkhalidkk6
 
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...Arti Parab Academics
 
Chapter two FHI.pptx
Chapter two FHI.pptxChapter two FHI.pptx
Chapter two FHI.pptxODAATUBE1
 
Ncp computer appls num sys2 pramod
Ncp computer appls  num sys2 pramodNcp computer appls  num sys2 pramod
Ncp computer appls num sys2 pramodNCP
 
Number systems and conversions
Number systems and conversionsNumber systems and conversions
Number systems and conversionsSusantha Herath
 
Number system in Digital Electronics
Number system in Digital ElectronicsNumber system in Digital Electronics
Number system in Digital ElectronicsJanki Shah
 
U1 - Code Conversion.pptx
U1 - Code Conversion.pptxU1 - Code Conversion.pptx
U1 - Code Conversion.pptxRamKumar612299
 

Ähnlich wie 005618132.pdf (20)

Number system
Number systemNumber system
Number system
 
Number Systems
Number SystemsNumber Systems
Number Systems
 
Unit 4.docx
Unit 4.docxUnit 4.docx
Unit 4.docx
 
Number system
Number systemNumber system
Number system
 
Number system
Number systemNumber system
Number system
 
DATA REPRESENTATION.pptx
DATA REPRESENTATION.pptxDATA REPRESENTATION.pptx
DATA REPRESENTATION.pptx
 
Number Systems Basic Concepts
Number Systems Basic ConceptsNumber Systems Basic Concepts
Number Systems Basic Concepts
 
Chapter 2 Data Representation on CPU (part 1)
Chapter 2 Data Representation on CPU (part 1)Chapter 2 Data Representation on CPU (part 1)
Chapter 2 Data Representation on CPU (part 1)
 
Number System and Conversions.pptx
Number System and Conversions.pptxNumber System and Conversions.pptx
Number System and Conversions.pptx
 
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
 
Number Systems - AK.pptx
Number Systems - AK.pptxNumber Systems - AK.pptx
Number Systems - AK.pptx
 
Chapter two FHI.pptx
Chapter two FHI.pptxChapter two FHI.pptx
Chapter two FHI.pptx
 
Ncp computer appls num sys2 pramod
Ncp computer appls  num sys2 pramodNcp computer appls  num sys2 pramod
Ncp computer appls num sys2 pramod
 
Number systems and conversions
Number systems and conversionsNumber systems and conversions
Number systems and conversions
 
NUMBER SYSTEM.pptx
NUMBER SYSTEM.pptxNUMBER SYSTEM.pptx
NUMBER SYSTEM.pptx
 
Number system in Digital Electronics
Number system in Digital ElectronicsNumber system in Digital Electronics
Number system in Digital Electronics
 
Number system
Number systemNumber system
Number system
 
uyuyuy.pdf
uyuyuy.pdfuyuyuy.pdf
uyuyuy.pdf
 
U1 - Code Conversion.pptx
U1 - Code Conversion.pptxU1 - Code Conversion.pptx
U1 - Code Conversion.pptx
 
Data Representation
Data RepresentationData Representation
Data Representation
 

Kürzlich hochgeladen

APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC
 
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...SUHANI PANDEY
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirtrahman018755
 
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...SUHANI PANDEY
 
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...nilamkumrai
 
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...SUHANI PANDEY
 
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)Delhi Call girls
 
Real Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtReal Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtrahman018755
 
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge GraphsEleniIlkou
 
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查ydyuyu
 
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men 🔝mehsana🔝 Escorts...
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men  🔝mehsana🔝   Escorts...➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men  🔝mehsana🔝   Escorts...
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men 🔝mehsana🔝 Escorts...nirzagarg
 
Katraj ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For S...
Katraj ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For S...Katraj ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For S...
Katraj ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For S...tanu pandey
 
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLimonikaupta
 
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...roncy bisnoi
 

Kürzlich hochgeladen (20)

APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53
 
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirt
 
Russian Call Girls in %(+971524965298 )# Call Girls in Dubai
Russian Call Girls in %(+971524965298  )#  Call Girls in DubaiRussian Call Girls in %(+971524965298  )#  Call Girls in Dubai
Russian Call Girls in %(+971524965298 )# Call Girls in Dubai
 
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
 
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
 
📱Dehradun Call Girls Service 📱☎️ +91'905,3900,678 ☎️📱 Call Girls In Dehradun 📱
📱Dehradun Call Girls Service 📱☎️ +91'905,3900,678 ☎️📱 Call Girls In Dehradun 📱📱Dehradun Call Girls Service 📱☎️ +91'905,3900,678 ☎️📱 Call Girls In Dehradun 📱
📱Dehradun Call Girls Service 📱☎️ +91'905,3900,678 ☎️📱 Call Girls In Dehradun 📱
 
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
 
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
 
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
 
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
 
Real Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtReal Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirt
 
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
 
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
 
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
 
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men 🔝mehsana🔝 Escorts...
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men  🔝mehsana🔝   Escorts...➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men  🔝mehsana🔝   Escorts...
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men 🔝mehsana🔝 Escorts...
 
Katraj ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For S...
Katraj ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For S...Katraj ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For S...
Katraj ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For S...
 
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
 
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
 

005618132.pdf

  • 2. NUMBER SYSTEM Decimal Number System Binary Number System Octal Number System Hexadecimal Number System
  • 3. Decimal Number System  The decimal system is composed of 1- numerals or symbols (Deca means 10, that is why this is called decimal system). These 10 symbols are 0,1,2,3,4,5,6,7,8,9 ; using these symbols as digit as number, we can express any quantity. The decimal system, also called the base-10 system
  • 4. Binary Number System  Binary System, there are only two symbols or possible digit values, 0 and 1. This base-2 system can be used to represent any quantity that can be represented in decimal or other number systems.  The Binary system is also a positional-value system, wherein each binary digit has its own value expressed as a power of 2.
  • 5. Octal Number System  The Octal number system is very important in digital computer work. The octal number system has a base of eight, meaning that it has eight unique symbols : 0,1,2,3,4,5,6,7 . Thus each digit of an octal number can have any value from 0 to 7.  The octal system is a positional value system, wherein each octal digit has its own value expressed as a power of 8.
  • 6. Hexadecimal Number System  The Hexadecimal System uses base 16. Thus, it has 16 possible digit symbols. It uses the digits 0 – 9 and the letter A, B, C, D, E & F as the 16 digit symbols.  Hexadecimal is a positional value System has its own value expressed as a power of 16.
  • 7. NUMBER CONVERSIONS CONVERSIONS WITH BINARY Decimal To Binary Decimal Fraction To Binary Binary To Decimal Binary Fraction To Decimal
  • 8. Decimal To Binary  To converting decimal to Binary we use Repeated division method. In this the no. is successively divide by 2 and its remainder recorded.  For Example convert decimal to Binary 4310 2 43 2 21 1 2 10 1 2 5 0 2 2 1 2 1 0 1 1 CONVERSIONS WITH BINARY WRITE IN THIS ORDER From Down to Up Your Answer 4310 = 1010112
  • 9. Decimal Fraction To Binary  To Convert a decimal fraction into binary, multiply the decimal fraction by the base that’s 2. Do untill you will get zero at fractional part.  For Example Convert 0.37510 to Binary Integer Part Multiply(fractional part)0.375 * 2 = 0.750 0 0.75 * 2 = 1.50 1 0.50 * 2 = 1.00 1 Your Answer is 0.37510 = 0.0112 Write From Up to Down CONVERSIONS WITH BINARY
  • 10. Binary To Decimal  To convert Binary to Decimal, Add positional weights or values with power of 2 start from right side.  For Example Convert 11011 to Decimal. 24 23 22 21 20 1 * 24 + 1 * 23 + 0 * 22 + 1 * 21 + 1 * 20 = 16 + 8 + 0 + 2 + 1 = 2710 (decimal) 1 1 0 1 1 CONVERSIONS WITH BINARY
  • 11. Binary Fraction To Decimal  To find binary fraction, take the sum of products of each digit value (0 – 1) and its positional value. Starts from left side.  For Example convert 0.0101 to Decimal. 2-1 2-2 2-3 2-4 0 * 2-1 + 1 * 2-2 + 0 * 2-3 + 1 * 2-4 = 0 + 0.25 + 0 + 0.0625 0.01012 = 0.312510 (decimal) CONVERSIONS WITH BINARY . 0 1 0 1
  • 12. NUMBER CONVERSIONS CONVERSIONS WITH OCTAL Decimal To Octal Decimal Fraction To Octal Octal To Decimal Octal To Binary Binary To Octal
  • 13. Decimal To Octal  A decimal integer can be converted to octal by repeated-division method with division factor of 8.  Example Convert 26610 to Octal remainder 8 266 2 8 33 1 8 4 4 0 26610 = 4128 WRITE IN THIS ORDER From Down to Up CONVERSIONS WITH OCTAL
  • 14. Decimal Fraction To Octal  To convert Decimal fraction into Octal, multiply fractional part with 8 till you get fractional part 0.  Example : convert 0.37510 to Octal Integer Part 0.375 * 8 = 3.0 3  0.37510 = 0.38 CONVERSIONS WITH OCTAL Write From Up to Down
  • 15. Octal To Decimal  It can easily converted into decimal by multiplying each octal digit by its positional weight.  For Example 3728 to Decimal 82 81 80 3 * 82 + 7 * 81 + 2 * 80 = 3 * 64 + 7 * 8 + 2 * 1 = 25010 CONVERSIONS WITH OCTAL 3 7 2
  • 16. Octal To Binary  To convert Octal To Binary is easy. This converting is performed by converting each octal digit to its 3 bit binary. Possible digits converted as indicated in Table  Example : 4728 to binary From table , 4 = 100 , 7 = 111 & 2 = 010 We get 4728 = 1001110102 CONVERSIONS WITH OCTAL Octal Digit 0 1 2 3 4 5 6 7 Binary 000 001 010 011 100 101 110 111
  • 17. Binary To Octal  Its simply the reverse of octal to binary. Make the three bits group starting from LSB. Then convert it with using Table  For Example: 110101102 to Octal Make group of three 011 , 010 & 110 011 = 3 , 010 = 2 & 110 = 6 110101102 = 3268 CONVERSIONS WITH OCTAL Octal Digit 0 1 2 3 4 5 6 7 Binary 000 001 010 011 100 101 110 111 Add Zero To Make it group of 3 bit.
  • 18. NUMBER CONVERSIONS CONVERSIONS WITH HEX Decimal To HEX Decimal Fraction To HEX HEX To Decimal HEX To Binary Binary To HEX
  • 19. Decimal To HEX  A decimal integer can be converted to hex by repeated- division method with division factor of 16.  Example Convert 26610 to Hex remainder 16 423 7 16 26 A 16 1 1 0 42310 = 1A716 1010 = A16 WRITE IN THIS ORDER From Down to Up CONVERSIONS WITH HEX
  • 20. Decimal Fraction To Hex  To convert Decimal fraction into Hex, multiply fractional part with 16 till you get fractional part 0.  Example : convert 0.0312510 to Hex Integer Part 0. 03125 * 16 =0.5 0 0. 5 * 16 = 8.0 8  0.0312510 = 0.0816 CONVERSIONS WITH HEX Write From Up to Down
  • 21. HEX To Decimal  It can easily converted into decimal by multiplying each Hex digit by its positional weight has power of 16.  For Example 2AF16 to Decimal 162 161 160 2 * 162 + A * 161 + F * 160 = 2 * 256 + 10 * 8 + 15 * 1 = 60710 CONVERSIONS WITH HEX 2 A F Decimal Hex 0 0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 Decimal Hex 8 8 9 9 10 A 11 B 12 C 13 D 14 E 15 F
  • 22. HEX To Binary  To convert Hex To Binary is easy. This converting is performed by converting each hex digit to its 4 bit binary. Possible digits converted as indicated in Table Example : 3A616 to binary From table, 3 = 0011 , A = 1010 & 6 = 0110 We get 3A616 = 0011101001102 CONVERSIONS WITH HEX Binary Hex 0000 0 0001 1 0010 2 0011 3 0100 4 0101 5 0110 6 0111 7 Binary Hex 1000 8 1001 9 1010 A 1011 B 1100 C 1101 D 1110 E 1111 F
  • 23. Binary To HEX  Its simply the reverse of Hex to binary. Make the four bits group starting from LSB. Then convert it with using Table  For Example: 10101110102 to Hex Make group of four 0010 , 1011 & 1010 0010 = 2 , 1011 = B & 1010 = A 10101110102 = 2BA16 CONVERSIONS WITH HEX Add Zero to Make it group of 4 bit. Binary Hex 0000 0 0001 1 0010 2 0011 3 0100 4 0101 5 0110 6 0111 7 Binary Hex 1000 8 1001 9 1010 A 1011 B 1100 C 1101 D 1110 E 1111 F