SlideShare a Scribd company logo
A set of values used to 
represent different quantities. 
Examples: 
Number of students in a Class or number of 
viewers watching a certain TV program. 
It includes audio, graphics, video, text, and 
numbers. 
Base or Radix are the total number of digits 
used in a number system.
Some important number systems 
are as follows: 
 DECIMAL number system 
 BINARY number system 
 OCTAL number system 
 HEXADECIMAL number system 
The decimal number system is used in general. 
However, the computers use binary number , octal, and 
hexadecimal number systems.
BINARY NUMBER SYSTEM
DECIMAL NUMBER SYSTEM 
 It is the most widely used number system. 
 It consists of ten numbers from 0 to 9. 
 It’s base is 10. 
Examples: 
1. 145010 
2. 24210 
3. 1000002410
OCTAL NUMBER SYSTEM 
 It is the shorthand representation of binary numbers. 
 Any digit in this system is always less than 8. 
 It consists of eight digits from 0 to 7. 
 It’s base is 8. 
Examples: 
1. 56568 
2. 1248 
3. 3788
HEXADECIMAL NUMBER 
SYSTEM 
 It consists of 16 digits from 0 to 9 and A to F. 
 The alphabets A to F represent decimal numbers 10 to 
15. 
 It’s base is 16. 
Examples: 
1. 29716 
2. BA5916 
3. BACA16
CONVERSION FOR HEXADECIMAL 
DECIMAL HEXADECIMAL 
1 0001 
2 0010 
3 0011 
4 0100 
5 0101 
6 0110 
7 0111 
8 1000 
9 1001 
10-A 1001 
11-B 1011 
12-C 1100 
13-D 1101 
14-E 1110 
15-F 1111
STEP BINARY NUMBER DECIMAL NUMBER 
Step 1 111012 ((1x24)+(1x23)+(1x22)+ 
(0x21)+(1x20)) 10 
Step 2 111012 (16+8+4+0+1) 10 
Step 3 111012 2910 
1.Determine the column (positional) value of each digit (this depends 
on the position of the digit and the base of the number system.) 
2.Multiply the obtained column values (in step 1) by the digits in the 
corresponding columns. 
3.Sum the products calculated in step 2. The total is the equivalent 
value in decimal.
BINARY TO OCTAL 
STEPS: 
1.Divide the binary digits into groups of three (starting left to 
right). 
2.Convert each group of three binary digits to one octal digit. 
Add a (0) Zero digit to complete 
the 3 digits group. 
STEP BINARY NUMBER OCTAL NUMBER 
Step 1 101012 010 101 
Step 2 101012 28 58 
Step 3 101012 258
BINARY TO HEXADECIMAL 
STEPS: 
1.Divide the binary digits into groups of four (starting from the 
right). 
2.Convert each group of four binary digits to one hexadecimal 
symbol. 
Add two(2) Zero(0) digits to complete the four 
(4) digits group. 
STEP BINARY NUMBER 
H10101EXADECIMAL 
NUMBER 
Step 1 101012 0001 0101 
Step 2 101012 110 510 
Step 3 101012 1516
DECIMAL TO BINARY 
STEP OPERATION RESULT REMAINDER 
Step 1 29/2 14 1 
Step 2 14/2 7 0 
Step 3 7/2 3 1 
Step 4 3/2 1 1 
Step 5 1/2 0 1 
1.Divide the decimal number to be converted by the value of the new base. 
2.Get the remainder from step 1 as the rightmost digit (least significant digit) of 
new base number. 
3.Divide the quotient of the previous divide by the new base. 
4.Record the remainder from step 3 as the next digit (to the left) of the new 
base number.
DECIMAL TO OCTAL 
Steps: 
1.Divide decimal number by 8. Treat the division as an integer division. 
2.Write down the remainder (in octal). To get the remainder, multiply the 
result by 8 and subtract it to the decimal number/result. 
3.Repeat step 1-3 until the result is zero. 
4.The octal value is the digit sequence of the remainders from the last 
to first. 
DIVISION RESULT REMAINDER 
250/8 31 2 
31/8 3 7 
3/8 0 3 
 25010 = 3728
DECIMAL TO HEXADECIMAL 
Steps: 
1.Divide decimal number by 16. Treat the division as an integer division. 
2.Write down the remainder (in hexadecimal). 
3.Repeat step 1-3 until the result is zero. 
4.The hex value is the digit sequence of the remainders from the last to first. 
DIVISION RESULT REMAINDER (in HEX) 
256/16 16 0 
16/16 1 0 
1/16 0 1 
 25610 =10016
OCTAL TO BINARY 
Steps: 
1.Convert each octal digit to a 3 digit binary number (the octal digits 
may be treated as decimal for this conversion). 
2.Combine all the resulting binary groups (of 3 digits each) into a 
single binary number. 
STEP OCTAL NUMBER BINARY NUMBER 
Step 1 258 210 510 
Step 2 258 0102 1012 
Step 3 258 0101012 
 258 = 0101012
OCTAL TO DECIMAL 
Steps: 
1.Start the decimal result at 0. 
2.Remove the most significant octal digit (leftmost) and add it to the 
result. 
3.If all octal digits have been removed, you’re done. Stop. 
4.Otherwise, multiply the result by 8. 
5.Go to step 2. 
Octal Digits Operation 
Decimal 
Result 
Operation 
Decimal 
Result 
345 +3 3 x8 24 
45 +4 28 x8 224 
5 +5 229 done 
3458= (3*82)+(4*81)+(5*80) = (3*64)+(4*8)+(5*1) = 22910
HEXADECIMAL TO BINARY 
Steps: 
1.Convert each hexadecimal digit to a 4 digit binary number (the 
hexadecimal digits may be treated as decimal for this conversion). 
2.Combine all the resulting binary groups (of 4 digits each) into a 
single binary number. 
STEP 
HEXADECIMAL 
NUMBER 
BINARY NUMBER 
Step 1 15 12 52 
Step 2 15 00012 01012 
Step 3 15 000101012 
 1516 = 000101012
HEXADECIMAL TO DECIMAL 
Steps: 
1.Get the last digit of the hex number, call this digit the Current Digit. 
2.Make a variable, let’s call it power. Set the value to Zero. 
3.Multiply the current digit with (16^power). Store the result. 
4.Increment power by one. 
5.Set the current digit to the previous digit of the Hex Number. 
6.Repeat from step 3 until all digits have been multiplied. 
7.Sum the result of step 3 to get the answer Number. 
MULTIPLICATION RESULT 
9x(16^0) 9 
8x(16^1) 128 
5x(16^2) 1280 
Answer 1417 
 58916 = 141710
WORKING COMMITTEE 
CHERRY MARIE GALAUS 
ROSEANN FORONDA 
CRISTINA FABROS 
CRISTINA FABROS 
MICAH HADASSAH GUILLERMO 
DANILO PALTENG 
JANUEL ANTONIO 
MICAH HADASSAH GUILLERMO 
DANILO PALTENG 
JANUEL ANTONIO 
BS ACCOUNTANCY 1-2

More Related Content

What's hot

Number System (Binary,octal,Decimal,Hexadecimal)
Number System (Binary,octal,Decimal,Hexadecimal)Number System (Binary,octal,Decimal,Hexadecimal)
Number System (Binary,octal,Decimal,Hexadecimal)
Lovely Singh
 
BINARY NUMBER SYSTEM
BINARY NUMBER SYSTEMBINARY NUMBER SYSTEM
BINARY NUMBER SYSTEM
Zaheer Abbasi
 
Data representation in computers
Data representation in computersData representation in computers
Data representation in computers
Prof. Dr. K. Adisesha
 
Number system part 1
Number  system part 1Number  system part 1
Number system part 1
Excel Technology Lanka (Pvt) Ltd
 
Conversion of number system
Conversion of number systemConversion of number system
Conversion of number system
University of Potsdam
 
binary number system
 binary number system binary number system
binary number system
vishal gupta
 
Number system
Number systemNumber system
Number system
Aditya Sharat
 
Number+system (1)
Number+system (1)Number+system (1)
Number+system (1)
Bilal Maqbool ツ
 
09 binary number systems
09   binary number systems09   binary number systems
09 binary number systems
Lee Chadwick
 
Number System
Number SystemNumber System
Number System
Zahid Rajeel
 
Number Systems
Number SystemsNumber Systems
Number Systems
Gaditek
 
Basic of number system
Basic of number systemBasic of number system
Basic of number system
Akhilesh Maithani
 
Binary Arithmetic
Binary ArithmeticBinary Arithmetic
Binary Arithmeticgavhays
 
Binary to Decimal Conversion
Binary to Decimal ConversionBinary to Decimal Conversion
Binary to Decimal Conversion
Neelanjan Bhattacharyya
 
Computer-codes.pptx
Computer-codes.pptxComputer-codes.pptx
Computer-codes.pptx
PraveenThabbannavar
 

What's hot (20)

Number System (Binary,octal,Decimal,Hexadecimal)
Number System (Binary,octal,Decimal,Hexadecimal)Number System (Binary,octal,Decimal,Hexadecimal)
Number System (Binary,octal,Decimal,Hexadecimal)
 
BINARY NUMBER SYSTEM
BINARY NUMBER SYSTEMBINARY NUMBER SYSTEM
BINARY NUMBER SYSTEM
 
Data representation in computers
Data representation in computersData representation in computers
Data representation in computers
 
Number system part 1
Number  system part 1Number  system part 1
Number system part 1
 
Conversion of number system
Conversion of number systemConversion of number system
Conversion of number system
 
binary number system
 binary number system binary number system
binary number system
 
Conversion binary to decimal
Conversion binary to decimalConversion binary to decimal
Conversion binary to decimal
 
W 9 numbering system
W 9 numbering systemW 9 numbering system
W 9 numbering system
 
Number system
Number systemNumber system
Number system
 
Number+system (1)
Number+system (1)Number+system (1)
Number+system (1)
 
09 binary number systems
09   binary number systems09   binary number systems
09 binary number systems
 
Number System
Number SystemNumber System
Number System
 
Number Systems
Number SystemsNumber Systems
Number Systems
 
Number system conversion
Number system conversionNumber system conversion
Number system conversion
 
Slide03 Number System and Operations Part 1
Slide03 Number System and Operations Part 1Slide03 Number System and Operations Part 1
Slide03 Number System and Operations Part 1
 
Basic of number system
Basic of number systemBasic of number system
Basic of number system
 
Binary Arithmetic
Binary ArithmeticBinary Arithmetic
Binary Arithmetic
 
Binary to Decimal Conversion
Binary to Decimal ConversionBinary to Decimal Conversion
Binary to Decimal Conversion
 
Computer-codes.pptx
Computer-codes.pptxComputer-codes.pptx
Computer-codes.pptx
 
Ascii 03
Ascii 03Ascii 03
Ascii 03
 

Similar to Chapter iii: Number System

Number system and their conversion
Number system and their conversionNumber system and their conversion
Number system and their conversion
Ram Pratap Singh
 
Computer Number system
Computer Number systemComputer Number system
Computer Number system
Anil Kumar Prajapati
 
numbersystem-211022083557.pdf
numbersystem-211022083557.pdfnumbersystem-211022083557.pdf
numbersystem-211022083557.pdf
AsthaChaurasia4
 
DATA REPRESENTATION.pptx
DATA REPRESENTATION.pptxDATA REPRESENTATION.pptx
DATA REPRESENTATION.pptx
MamataAnilgod
 
Number system
Number systemNumber system
Number system
SAEED ULLAH JAN
 
LEfddfffhhfrrdvvggfdwfcxsfvdsfgC 02 A.pptx
LEfddfffhhfrrdvvggfdwfcxsfvdsfgC 02 A.pptxLEfddfffhhfrrdvvggfdwfcxsfvdsfgC 02 A.pptx
LEfddfffhhfrrdvvggfdwfcxsfvdsfgC 02 A.pptx
Ahsan433
 
1663694151.pdf
1663694151.pdf1663694151.pdf
1663694151.pdf
nostavimle
 
Number Systems
Number SystemsNumber Systems
Number Systems
Jubayer Alam Shoikat
 
lecture02-numbersystem-191002152647.pdf
lecture02-numbersystem-191002152647.pdflecture02-numbersystem-191002152647.pdf
lecture02-numbersystem-191002152647.pdf
AsthaChaurasia4
 
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
 
Number System.pptx
Number System.pptxNumber System.pptx
Number System.pptx
ColleenVender2
 
Number System.pptx
Number System.pptxNumber System.pptx
Number System.pptx
Lovely Professional University
 
Ch 4
Ch 4Ch 4
Ch 4
nesaryyyy
 
Chapter 03-Number System-Computer Application.pptx
Chapter 03-Number System-Computer Application.pptxChapter 03-Number System-Computer Application.pptx
Chapter 03-Number System-Computer Application.pptx
gadisaAdamu
 
Chapter two FHI.pptx
Chapter two FHI.pptxChapter two FHI.pptx
Chapter two FHI.pptx
ODAATUBE1
 
Number Systems - AK.pptx
Number Systems - AK.pptxNumber Systems - AK.pptx
Number Systems - AK.pptx
AmitSharma798754
 
dtei-180910104911-converted.pptx
dtei-180910104911-converted.pptxdtei-180910104911-converted.pptx
dtei-180910104911-converted.pptx
deepaMS4
 
Number system
Number systemNumber system
Number system
Mohit Saini
 
Data representation
Data representationData representation
Data representation
Manish Kumar
 

Similar to Chapter iii: Number System (20)

Number system and their conversion
Number system and their conversionNumber system and their conversion
Number system and their conversion
 
Computer Number system
Computer Number systemComputer Number system
Computer Number system
 
numbersystem-211022083557.pdf
numbersystem-211022083557.pdfnumbersystem-211022083557.pdf
numbersystem-211022083557.pdf
 
DCF QNA edited
DCF QNA editedDCF QNA edited
DCF QNA edited
 
DATA REPRESENTATION.pptx
DATA REPRESENTATION.pptxDATA REPRESENTATION.pptx
DATA REPRESENTATION.pptx
 
Number system
Number systemNumber system
Number system
 
LEfddfffhhfrrdvvggfdwfcxsfvdsfgC 02 A.pptx
LEfddfffhhfrrdvvggfdwfcxsfvdsfgC 02 A.pptxLEfddfffhhfrrdvvggfdwfcxsfvdsfgC 02 A.pptx
LEfddfffhhfrrdvvggfdwfcxsfvdsfgC 02 A.pptx
 
1663694151.pdf
1663694151.pdf1663694151.pdf
1663694151.pdf
 
Number Systems
Number SystemsNumber Systems
Number Systems
 
lecture02-numbersystem-191002152647.pdf
lecture02-numbersystem-191002152647.pdflecture02-numbersystem-191002152647.pdf
lecture02-numbersystem-191002152647.pdf
 
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 System.pptx
Number System.pptxNumber System.pptx
Number System.pptx
 
Number System.pptx
Number System.pptxNumber System.pptx
Number System.pptx
 
Ch 4
Ch 4Ch 4
Ch 4
 
Chapter 03-Number System-Computer Application.pptx
Chapter 03-Number System-Computer Application.pptxChapter 03-Number System-Computer Application.pptx
Chapter 03-Number System-Computer Application.pptx
 
Chapter two FHI.pptx
Chapter two FHI.pptxChapter two FHI.pptx
Chapter two FHI.pptx
 
Number Systems - AK.pptx
Number Systems - AK.pptxNumber Systems - AK.pptx
Number Systems - AK.pptx
 
dtei-180910104911-converted.pptx
dtei-180910104911-converted.pptxdtei-180910104911-converted.pptx
dtei-180910104911-converted.pptx
 
Number system
Number systemNumber system
Number system
 
Data representation
Data representationData representation
Data representation
 

Recently uploaded

clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
Priyankaranawat4
 
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
RitikBhardwaj56
 
Top five deadliest dog breeds in America
Top five deadliest dog breeds in AmericaTop five deadliest dog breeds in America
Top five deadliest dog breeds in America
Bisnar Chase Personal Injury Attorneys
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
Normal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of LabourNormal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of Labour
Wasim Ak
 
Fresher’s Quiz 2023 at GMC Nizamabad.pptx
Fresher’s Quiz 2023 at GMC Nizamabad.pptxFresher’s Quiz 2023 at GMC Nizamabad.pptx
Fresher’s Quiz 2023 at GMC Nizamabad.pptx
SriSurya50
 
Delivering Micro-Credentials in Technical and Vocational Education and Training
Delivering Micro-Credentials in Technical and Vocational Education and TrainingDelivering Micro-Credentials in Technical and Vocational Education and Training
Delivering Micro-Credentials in Technical and Vocational Education and Training
AG2 Design
 
What is the purpose of studying mathematics.pptx
What is the purpose of studying mathematics.pptxWhat is the purpose of studying mathematics.pptx
What is the purpose of studying mathematics.pptx
christianmathematics
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
Israel Genealogy Research Association
 
Best Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDABest Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDA
deeptiverma2406
 
Aficamten in HCM (SEQUOIA HCM TRIAL 2024)
Aficamten in HCM (SEQUOIA HCM TRIAL 2024)Aficamten in HCM (SEQUOIA HCM TRIAL 2024)
Aficamten in HCM (SEQUOIA HCM TRIAL 2024)
Ashish Kohli
 
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat  Leveraging AI for Diversity, Equity, and InclusionExecutive Directors Chat  Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
TechSoup
 
A Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptxA Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptx
thanhdowork
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
TechSoup
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
Peter Windle
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
eBook.com.bd (প্রয়োজনীয় বাংলা বই)
 
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
IreneSebastianRueco1
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
AyyanKhan40
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
David Douglas School District
 

Recently uploaded (20)

clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
 
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
 
Top five deadliest dog breeds in America
Top five deadliest dog breeds in AmericaTop five deadliest dog breeds in America
Top five deadliest dog breeds in America
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
Normal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of LabourNormal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of Labour
 
Fresher’s Quiz 2023 at GMC Nizamabad.pptx
Fresher’s Quiz 2023 at GMC Nizamabad.pptxFresher’s Quiz 2023 at GMC Nizamabad.pptx
Fresher’s Quiz 2023 at GMC Nizamabad.pptx
 
Delivering Micro-Credentials in Technical and Vocational Education and Training
Delivering Micro-Credentials in Technical and Vocational Education and TrainingDelivering Micro-Credentials in Technical and Vocational Education and Training
Delivering Micro-Credentials in Technical and Vocational Education and Training
 
What is the purpose of studying mathematics.pptx
What is the purpose of studying mathematics.pptxWhat is the purpose of studying mathematics.pptx
What is the purpose of studying mathematics.pptx
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
 
Best Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDABest Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDA
 
Aficamten in HCM (SEQUOIA HCM TRIAL 2024)
Aficamten in HCM (SEQUOIA HCM TRIAL 2024)Aficamten in HCM (SEQUOIA HCM TRIAL 2024)
Aficamten in HCM (SEQUOIA HCM TRIAL 2024)
 
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat  Leveraging AI for Diversity, Equity, and InclusionExecutive Directors Chat  Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
 
A Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptxA Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptx
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
 
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
 

Chapter iii: Number System

  • 1. A set of values used to represent different quantities. Examples: Number of students in a Class or number of viewers watching a certain TV program. It includes audio, graphics, video, text, and numbers. Base or Radix are the total number of digits used in a number system.
  • 2. Some important number systems are as follows:  DECIMAL number system  BINARY number system  OCTAL number system  HEXADECIMAL number system The decimal number system is used in general. However, the computers use binary number , octal, and hexadecimal number systems.
  • 4. DECIMAL NUMBER SYSTEM  It is the most widely used number system.  It consists of ten numbers from 0 to 9.  It’s base is 10. Examples: 1. 145010 2. 24210 3. 1000002410
  • 5. OCTAL NUMBER SYSTEM  It is the shorthand representation of binary numbers.  Any digit in this system is always less than 8.  It consists of eight digits from 0 to 7.  It’s base is 8. Examples: 1. 56568 2. 1248 3. 3788
  • 6. HEXADECIMAL NUMBER SYSTEM  It consists of 16 digits from 0 to 9 and A to F.  The alphabets A to F represent decimal numbers 10 to 15.  It’s base is 16. Examples: 1. 29716 2. BA5916 3. BACA16
  • 7. CONVERSION FOR HEXADECIMAL DECIMAL HEXADECIMAL 1 0001 2 0010 3 0011 4 0100 5 0101 6 0110 7 0111 8 1000 9 1001 10-A 1001 11-B 1011 12-C 1100 13-D 1101 14-E 1110 15-F 1111
  • 8.
  • 9. STEP BINARY NUMBER DECIMAL NUMBER Step 1 111012 ((1x24)+(1x23)+(1x22)+ (0x21)+(1x20)) 10 Step 2 111012 (16+8+4+0+1) 10 Step 3 111012 2910 1.Determine the column (positional) value of each digit (this depends on the position of the digit and the base of the number system.) 2.Multiply the obtained column values (in step 1) by the digits in the corresponding columns. 3.Sum the products calculated in step 2. The total is the equivalent value in decimal.
  • 10. BINARY TO OCTAL STEPS: 1.Divide the binary digits into groups of three (starting left to right). 2.Convert each group of three binary digits to one octal digit. Add a (0) Zero digit to complete the 3 digits group. STEP BINARY NUMBER OCTAL NUMBER Step 1 101012 010 101 Step 2 101012 28 58 Step 3 101012 258
  • 11. BINARY TO HEXADECIMAL STEPS: 1.Divide the binary digits into groups of four (starting from the right). 2.Convert each group of four binary digits to one hexadecimal symbol. Add two(2) Zero(0) digits to complete the four (4) digits group. STEP BINARY NUMBER H10101EXADECIMAL NUMBER Step 1 101012 0001 0101 Step 2 101012 110 510 Step 3 101012 1516
  • 12. DECIMAL TO BINARY STEP OPERATION RESULT REMAINDER Step 1 29/2 14 1 Step 2 14/2 7 0 Step 3 7/2 3 1 Step 4 3/2 1 1 Step 5 1/2 0 1 1.Divide the decimal number to be converted by the value of the new base. 2.Get the remainder from step 1 as the rightmost digit (least significant digit) of new base number. 3.Divide the quotient of the previous divide by the new base. 4.Record the remainder from step 3 as the next digit (to the left) of the new base number.
  • 13. DECIMAL TO OCTAL Steps: 1.Divide decimal number by 8. Treat the division as an integer division. 2.Write down the remainder (in octal). To get the remainder, multiply the result by 8 and subtract it to the decimal number/result. 3.Repeat step 1-3 until the result is zero. 4.The octal value is the digit sequence of the remainders from the last to first. DIVISION RESULT REMAINDER 250/8 31 2 31/8 3 7 3/8 0 3  25010 = 3728
  • 14. DECIMAL TO HEXADECIMAL Steps: 1.Divide decimal number by 16. Treat the division as an integer division. 2.Write down the remainder (in hexadecimal). 3.Repeat step 1-3 until the result is zero. 4.The hex value is the digit sequence of the remainders from the last to first. DIVISION RESULT REMAINDER (in HEX) 256/16 16 0 16/16 1 0 1/16 0 1  25610 =10016
  • 15. OCTAL TO BINARY Steps: 1.Convert each octal digit to a 3 digit binary number (the octal digits may be treated as decimal for this conversion). 2.Combine all the resulting binary groups (of 3 digits each) into a single binary number. STEP OCTAL NUMBER BINARY NUMBER Step 1 258 210 510 Step 2 258 0102 1012 Step 3 258 0101012  258 = 0101012
  • 16. OCTAL TO DECIMAL Steps: 1.Start the decimal result at 0. 2.Remove the most significant octal digit (leftmost) and add it to the result. 3.If all octal digits have been removed, you’re done. Stop. 4.Otherwise, multiply the result by 8. 5.Go to step 2. Octal Digits Operation Decimal Result Operation Decimal Result 345 +3 3 x8 24 45 +4 28 x8 224 5 +5 229 done 3458= (3*82)+(4*81)+(5*80) = (3*64)+(4*8)+(5*1) = 22910
  • 17. HEXADECIMAL TO BINARY Steps: 1.Convert each hexadecimal digit to a 4 digit binary number (the hexadecimal digits may be treated as decimal for this conversion). 2.Combine all the resulting binary groups (of 4 digits each) into a single binary number. STEP HEXADECIMAL NUMBER BINARY NUMBER Step 1 15 12 52 Step 2 15 00012 01012 Step 3 15 000101012  1516 = 000101012
  • 18. HEXADECIMAL TO DECIMAL Steps: 1.Get the last digit of the hex number, call this digit the Current Digit. 2.Make a variable, let’s call it power. Set the value to Zero. 3.Multiply the current digit with (16^power). Store the result. 4.Increment power by one. 5.Set the current digit to the previous digit of the Hex Number. 6.Repeat from step 3 until all digits have been multiplied. 7.Sum the result of step 3 to get the answer Number. MULTIPLICATION RESULT 9x(16^0) 9 8x(16^1) 128 5x(16^2) 1280 Answer 1417  58916 = 141710
  • 19.
  • 20. WORKING COMMITTEE CHERRY MARIE GALAUS ROSEANN FORONDA CRISTINA FABROS CRISTINA FABROS MICAH HADASSAH GUILLERMO DANILO PALTENG JANUEL ANTONIO MICAH HADASSAH GUILLERMO DANILO PALTENG JANUEL ANTONIO BS ACCOUNTANCY 1-2