SlideShare uma empresa Scribd logo
1 de 67
Week-9 ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Window  XP  Installation ,[object Object],[object Object]
FAT vs NTFS ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
FAT vs NTFS  (Cont’d) ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
[object Object],[object Object],[object Object],[object Object],[object Object],Digital Representation
Data Representation  (Cont’d) ,[object Object],Step 2. An electronic signal for the capital letter  D  is sent to the system unit. Step 3. The signal for the capital letter  D  is converted to its ASCII binary code (01000100) and is stored in memory for processing. Step 1. The user presses the capital letter  D  (shift+D key) on the keyboard. Step 4. After processing, the binary code for the capital letter  D  is converted to an image, and displayed on the output device.
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Digital Representation  (Cont’d)
Data Representation  (Cont’d) ,[object Object],[object Object],[object Object],ASCII Symbol EBCDIC 00110000 0 11110000 00110001 1 11110001 00110010 2 11110010 00110011 3 11110011
[object Object],[object Object],[object Object],[object Object],Numbering System
Types Of Numbering System ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Types of Positional Number Systems No No 0, 1, … 9, A, B, … F 16 Hexa-decimal No No 0, 1, … 7 8 Octal Yes No 0, 1 2 Binary No Yes 0, 1, … 9 10 Decimal Used in computers? Used by humans? Symbols Base System
Base or Radix Number Systems ,[object Object],[object Object],[object Object],[object Object],Each number system has a number of different digits which is called the  radix  or the  base  of the number system.
[object Object],[object Object],[object Object],[object Object],[object Object],Types of Positional Numbering System  (Cont’d)
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Types of Positional Numbering System  (Cont’d)
[object Object],[object Object],[object Object],[object Object],Types of Positional Numbering System  (Cont’d)
Binary Number System Base (Radix) 2 Digits 0, 1 e.g. 1110 2 The digit 1 in the third position from the right represents the value 4 and the digit 1 in the fourth position from the right represents the value 8.  1 8=2 3 1 1 0 4=2 2 2=2 1 1=2 0
Decimal Number System Base (Radix)   10 Digits 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 e.g. 7475 10 The magnitude represented by a digit is decided by the position of the digit within the number. For example the digit 7 in the left-most position of 7475 counts for 7000 and the digit 7 in the second position from the right counts for 70. 7 1000 100 4 7 5 1 10
Octal Number System Base (Radix)   8 Digits 0, 1, 2, 3, 4, 5, 6, 7 e.g. 1623 8 The digit 2 in the second position from the right represents the value 16 and the digit 1 in the fourth position from the right represents the value 512.  1 512=8 3 6 64=8 2 2 8=8 1 3 1=8 0
Hexadecimal Number System Base (Radix) 16 Digits 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,  A, B, C, D, E, F e.g.  2F4D  16 The digit F in the third position from the right represents the value 3840 and the digit D in the first position from the right represents the value 1.  2 4096=16 3 F 256=16 2 4 16=16 1 D 1=16 0
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Standard Conversion Table
Quantities/Counting (1 of 3) 7 7 111 7 6 6 110 6 5 5 101 5 4 4 100 4 3 3 11 3 2 2 10 2 1 1 1 1 0 0 0 0 Hexa- decimal Octal Binary Decimal
Quantities/Counting (2 of 3)  F 17 1111 15 E 16 1110 14 D 15 1101 13 C 14 1100 12 B 13 1011 11 A 12 1010 10 9 11 1001 9 8 10 1000 8 Hexa- decimal Octal Binary Decimal
Quantities/Counting (3 of 3)  Etc. 17 27 10111 23 16 26 10110 22 15 25 10101 21 14 24 10100 20 13 23 10011 19 12 22 10010 18 11 21 10001 17 10 20 10000 16 Hexa- decimal Octal Binary Decimal
Conversion Among Bases ,[object Object],Hexadecimal Decimal Octal Binary
Quick Example 25 10  = 11001 2  = 31 8  = 19 16 Base
Decimal to Decimal (just for fun) Hexadecimal Decimal Octal Binary
125 10  => 5 x 10 0 =  5 2 x 10 1 =  20 1 x 10 2 = 100   125 Base Weight
Binary to Decimal Hexadecimal Decimal Octal Binary
Binary to Decimal ,[object Object],[object Object],[object Object],[object Object]
Example 101011 2  =>  1 x 2 0  =   1 1 x 2 1  =  2 0 x 2 2  =   0 1 x 2 3  =   8 0 x 2 4  =  0 1 x 2 5  =  32 43 10 Bit “0”
Octal to Decimal Hexadecimal Decimal Octal Binary
Octal to Decimal ,[object Object],[object Object],[object Object],[object Object]
Example 724 8  =>  4 x 8 0  =    4 2 x 8 1  =   16 7 x 8 2  =  448 468 10
Hexadecimal to Decimal Hexadecimal Decimal Octal Binary
Hexadecimal to Decimal ,[object Object],[object Object],[object Object],[object Object]
Example ABC 16  => C x 16 0  = 12 x  1 =  12   B x 16 1  = 11 x  16 =  176   A x 16 2  = 10 x 256 = 2560   2748 10
Decimal to Binary Hexadecimal Decimal Octal Binary
Decimal to Binary ,[object Object],[object Object],[object Object],[object Object],[object Object]
Example 125 10  = ? 2 125 10  = 1111101 2 2 125   62  1 2    31  0 2    15  1 2    7  1 2    3  1 2    1  1 2    0  1
Octal to Binary Hexadecimal Decimal Octal Binary
Octal to Binary ,[object Object],[object Object]
Example 705 8  = 111000101 2 705 8  = ? 2 7  0  5 111 000 101
Hexadecimal to Binary Hexadecimal Decimal Octal Binary
Hexadecimal to Binary ,[object Object],[object Object]
Example 10AF 16  = ? 2 10AF 16  = 0001000010101111 2 1  0  A  F 0001 0000 1010 1111
Decimal to Octal Hexadecimal Decimal Octal Binary
Decimal to Octal ,[object Object],[object Object],[object Object]
Example 1234 10  = ? 8 8  1234 154  2 1234 10  = 2322 8 8 19  2 8 2  3 8 0  2
Decimal to Hexadecimal Hexadecimal Decimal Octal Binary
Decimal to Hexadecimal ,[object Object],[object Object],[object Object]
Example 1234 10  = ? 16 1234 10  = 4D2 16 16  1234 77  2 16 4  13 = D 16 0  4
Binary to Octal Hexadecimal Decimal Octal Binary
Binary to Octal ,[object Object],[object Object],[object Object]
Example 1011010111 2  = ? 8 1011010111 2  = 1327 8 1 011 010 111 1  3  2  7
Binary to Hexadecimal Hexadecimal Decimal Octal Binary
Binary to Hexadecimal ,[object Object],[object Object],[object Object]
Example 1010111011 2  = ? 16 ,[object Object],[object Object],1010111011 2  = 2BB 16
Octal to Hexadecimal Hexadecimal Decimal Octal Binary
Octal to Hexadecimal ,[object Object],[object Object]
Example 1076 8  = ? 16 1076 8  = 23E 16 1  0  7  6 001  000  111  110 2  3  E
Hexadecimal to Octal Hexadecimal Decimal Octal Binary
Hexadecimal to Octal ,[object Object],[object Object]
Example 1F0C 16  = ? 8 1  7  4  1  4 1F0C 16  = 17414 8 1  F  0  C 0001  1111  0000  1100 1  7  4  1  4
Exercise – Convert ... Answer Don’t use a calculator! 1AF 703 1110101 33 Hexa- decimal Octal Binary Decimal
Common Powers (1 of 2) ,[object Object],T tera 10 12 G giga 10 9 M mega 10 6 k kilo 10 3 m milli 10 -3  micro 10 -6 n nano 10 -9 p pico 10 -12 Symbol Preface Power 1000000000000 1000000000 1000000 1000 .001 .000001 .000000001 .000000000001 Value
Common Powers (2 of 2) ,[object Object],[object Object],[object Object],G Giga 2 30 M mega 2 20 k kilo 2 10 Symbol Preface Power 1073741824 1048576 1024 Value
Example In the lab… 1. Double click on  My Computer 2. Right click on  C: 3. Click on  Properties / 2 30  =

Mais conteúdo relacionado

Mais procurados

Mais procurados (20)

Lecture-2(2): Number System & Conversion
Lecture-2(2): Number System & ConversionLecture-2(2): Number System & Conversion
Lecture-2(2): Number System & Conversion
 
PPT ON NUMBER SYSTEM
PPT ON NUMBER SYSTEMPPT ON NUMBER SYSTEM
PPT ON NUMBER SYSTEM
 
Basic of number system
Basic of number systemBasic of number system
Basic of number system
 
Number system
Number systemNumber system
Number system
 
binary number system
 binary number system binary number system
binary number system
 
Representation Of Numbers and Characters
Representation Of Numbers and CharactersRepresentation Of Numbers and Characters
Representation Of Numbers and Characters
 
Codes
CodesCodes
Codes
 
Digital Electronics- Number systems & codes
Digital Electronics- Number systems & codes Digital Electronics- Number systems & codes
Digital Electronics- Number systems & codes
 
01.number systems
01.number systems01.number systems
01.number systems
 
Floating point representation
Floating point representationFloating point representation
Floating point representation
 
Number Systems
Number SystemsNumber Systems
Number Systems
 
Number system
Number systemNumber system
Number system
 
Number System
Number SystemNumber System
Number System
 
Number System
Number SystemNumber System
Number System
 
Binary codes
Binary codesBinary codes
Binary codes
 
Number system
Number systemNumber system
Number system
 
Number System in CoMpUtEr
Number System in CoMpUtErNumber System in CoMpUtEr
Number System in CoMpUtEr
 
Digital logic design part1
Digital logic design part1Digital logic design part1
Digital logic design part1
 
Number system of computer
Number system of computerNumber system of computer
Number system of computer
 
Introduction to digital electornics
Introduction to digital electornicsIntroduction to digital electornics
Introduction to digital electornics
 

Semelhante a W 9 numbering system

Semelhante a W 9 numbering system (20)

Digital Electronics Notes.pdf
Digital Electronics Notes.pdfDigital Electronics Notes.pdf
Digital Electronics Notes.pdf
 
binarycode.pptx
binarycode.pptxbinarycode.pptx
binarycode.pptx
 
Chapter 3.pptx
Chapter 3.pptxChapter 3.pptx
Chapter 3.pptx
 
DLD Chapter-1.pdf
DLD Chapter-1.pdfDLD Chapter-1.pdf
DLD Chapter-1.pdf
 
Lec 02
Lec 02Lec 02
Lec 02
 
NUMBER SYSTEM.pptx
NUMBER SYSTEM.pptxNUMBER SYSTEM.pptx
NUMBER SYSTEM.pptx
 
Chapter 2.ppt
Chapter 2.pptChapter 2.ppt
Chapter 2.ppt
 
Number system
Number system  Number system
Number system
 
Basics of Computer For Begginers
Basics of Computer For BegginersBasics of Computer For Begginers
Basics of Computer For Begginers
 
Cit 1101 lec 02
Cit 1101 lec 02Cit 1101 lec 02
Cit 1101 lec 02
 
04 chapter03 02_numbers_systems_student_version_fa16
04 chapter03 02_numbers_systems_student_version_fa1604 chapter03 02_numbers_systems_student_version_fa16
04 chapter03 02_numbers_systems_student_version_fa16
 
Number systems
Number systemsNumber systems
Number systems
 
Number Systems
Number  SystemsNumber  Systems
Number Systems
 
Number System
Number SystemNumber System
Number System
 
Chapter two FHI.pptx
Chapter two FHI.pptxChapter two FHI.pptx
Chapter two FHI.pptx
 
Chapter 1: Binary System
 Chapter 1: Binary System Chapter 1: Binary System
Chapter 1: Binary System
 
Number systems and conversions
Number systems and conversionsNumber systems and conversions
Number systems and conversions
 
Number system
Number systemNumber system
Number system
 
Chapter 1 digital design.pptx
Chapter 1 digital design.pptxChapter 1 digital design.pptx
Chapter 1 digital design.pptx
 
Intro to IT Skills Lec 5 - English Department.pptx
Intro to IT Skills Lec 5 - English Department.pptxIntro to IT Skills Lec 5 - English Department.pptx
Intro to IT Skills Lec 5 - English Department.pptx
 

Mais de Institute of Management Studies UOP

2nd presentation the history and the study of the entrepreneurship in the his...
2nd presentation the history and the study of the entrepreneurship in the his...2nd presentation the history and the study of the entrepreneurship in the his...
2nd presentation the history and the study of the entrepreneurship in the his...Institute of Management Studies UOP
 

Mais de Institute of Management Studies UOP (20)

Hashim Khan Marketing MBA Marketing
Hashim Khan Marketing MBA MarketingHashim Khan Marketing MBA Marketing
Hashim Khan Marketing MBA Marketing
 
Swot analysis of the logistic at haier pakistan
Swot analysis of the logistic at haier pakistanSwot analysis of the logistic at haier pakistan
Swot analysis of the logistic at haier pakistan
 
Google Products Innovation
Google Products InnovationGoogle Products Innovation
Google Products Innovation
 
Operation Mgmt Lecture 3 by Yasir Anwar
Operation Mgmt Lecture 3 by Yasir AnwarOperation Mgmt Lecture 3 by Yasir Anwar
Operation Mgmt Lecture 3 by Yasir Anwar
 
2nd presentation the history and the study of the entrepreneurship in the his...
2nd presentation the history and the study of the entrepreneurship in the his...2nd presentation the history and the study of the entrepreneurship in the his...
2nd presentation the history and the study of the entrepreneurship in the his...
 
Baumol productive unproductive destructive
Baumol productive unproductive destructiveBaumol productive unproductive destructive
Baumol productive unproductive destructive
 
Cost Accounting Chapter 10
Cost Accounting Chapter 10Cost Accounting Chapter 10
Cost Accounting Chapter 10
 
Cost Accounting Chapter 9
Cost Accounting Chapter 9Cost Accounting Chapter 9
Cost Accounting Chapter 9
 
Cost Accounting Chapter 8
Cost Accounting Chapter 8Cost Accounting Chapter 8
Cost Accounting Chapter 8
 
Managerial Economics Chap 3
Managerial Economics Chap 3Managerial Economics Chap 3
Managerial Economics Chap 3
 
Managerial Economics Chap 2
Managerial Economics Chap 2Managerial Economics Chap 2
Managerial Economics Chap 2
 
Managerial Economics Chap 1
Managerial Economics Chap 1Managerial Economics Chap 1
Managerial Economics Chap 1
 
Williams07
Williams07Williams07
Williams07
 
Williams09
Williams09Williams09
Williams09
 
Brm 3
Brm 3Brm 3
Brm 3
 
Brm 2
Brm 2Brm 2
Brm 2
 
Brm 1
Brm 1Brm 1
Brm 1
 
Brm 3
Brm 3Brm 3
Brm 3
 
Logic & critical thinking (fallacies unit 3)
Logic & critical thinking (fallacies unit 3)Logic & critical thinking (fallacies unit 3)
Logic & critical thinking (fallacies unit 3)
 
Logic unit 1
Logic unit 1Logic unit 1
Logic unit 1
 

Último

Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991RKavithamani
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 

Último (20)

Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 

W 9 numbering system

  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11. Types of Positional Number Systems No No 0, 1, … 9, A, B, … F 16 Hexa-decimal No No 0, 1, … 7 8 Octal Yes No 0, 1 2 Binary No Yes 0, 1, … 9 10 Decimal Used in computers? Used by humans? Symbols Base System
  • 12.
  • 13.
  • 14.
  • 15.
  • 16. Binary Number System Base (Radix) 2 Digits 0, 1 e.g. 1110 2 The digit 1 in the third position from the right represents the value 4 and the digit 1 in the fourth position from the right represents the value 8. 1 8=2 3 1 1 0 4=2 2 2=2 1 1=2 0
  • 17. Decimal Number System Base (Radix) 10 Digits 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 e.g. 7475 10 The magnitude represented by a digit is decided by the position of the digit within the number. For example the digit 7 in the left-most position of 7475 counts for 7000 and the digit 7 in the second position from the right counts for 70. 7 1000 100 4 7 5 1 10
  • 18. Octal Number System Base (Radix) 8 Digits 0, 1, 2, 3, 4, 5, 6, 7 e.g. 1623 8 The digit 2 in the second position from the right represents the value 16 and the digit 1 in the fourth position from the right represents the value 512. 1 512=8 3 6 64=8 2 2 8=8 1 3 1=8 0
  • 19. Hexadecimal Number System Base (Radix) 16 Digits 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F e.g. 2F4D 16 The digit F in the third position from the right represents the value 3840 and the digit D in the first position from the right represents the value 1. 2 4096=16 3 F 256=16 2 4 16=16 1 D 1=16 0
  • 20.
  • 21. Quantities/Counting (1 of 3) 7 7 111 7 6 6 110 6 5 5 101 5 4 4 100 4 3 3 11 3 2 2 10 2 1 1 1 1 0 0 0 0 Hexa- decimal Octal Binary Decimal
  • 22. Quantities/Counting (2 of 3) F 17 1111 15 E 16 1110 14 D 15 1101 13 C 14 1100 12 B 13 1011 11 A 12 1010 10 9 11 1001 9 8 10 1000 8 Hexa- decimal Octal Binary Decimal
  • 23. Quantities/Counting (3 of 3) Etc. 17 27 10111 23 16 26 10110 22 15 25 10101 21 14 24 10100 20 13 23 10011 19 12 22 10010 18 11 21 10001 17 10 20 10000 16 Hexa- decimal Octal Binary Decimal
  • 24.
  • 25. Quick Example 25 10 = 11001 2 = 31 8 = 19 16 Base
  • 26. Decimal to Decimal (just for fun) Hexadecimal Decimal Octal Binary
  • 27. 125 10 => 5 x 10 0 = 5 2 x 10 1 = 20 1 x 10 2 = 100 125 Base Weight
  • 28. Binary to Decimal Hexadecimal Decimal Octal Binary
  • 29.
  • 30. Example 101011 2 => 1 x 2 0 = 1 1 x 2 1 = 2 0 x 2 2 = 0 1 x 2 3 = 8 0 x 2 4 = 0 1 x 2 5 = 32 43 10 Bit “0”
  • 31. Octal to Decimal Hexadecimal Decimal Octal Binary
  • 32.
  • 33. Example 724 8 => 4 x 8 0 = 4 2 x 8 1 = 16 7 x 8 2 = 448 468 10
  • 34. Hexadecimal to Decimal Hexadecimal Decimal Octal Binary
  • 35.
  • 36. Example ABC 16 => C x 16 0 = 12 x 1 = 12 B x 16 1 = 11 x 16 = 176 A x 16 2 = 10 x 256 = 2560 2748 10
  • 37. Decimal to Binary Hexadecimal Decimal Octal Binary
  • 38.
  • 39. Example 125 10 = ? 2 125 10 = 1111101 2 2 125 62 1 2 31 0 2 15 1 2 7 1 2 3 1 2 1 1 2 0 1
  • 40. Octal to Binary Hexadecimal Decimal Octal Binary
  • 41.
  • 42. Example 705 8 = 111000101 2 705 8 = ? 2 7 0 5 111 000 101
  • 43. Hexadecimal to Binary Hexadecimal Decimal Octal Binary
  • 44.
  • 45. Example 10AF 16 = ? 2 10AF 16 = 0001000010101111 2 1 0 A F 0001 0000 1010 1111
  • 46. Decimal to Octal Hexadecimal Decimal Octal Binary
  • 47.
  • 48. Example 1234 10 = ? 8 8 1234 154 2 1234 10 = 2322 8 8 19 2 8 2 3 8 0 2
  • 49. Decimal to Hexadecimal Hexadecimal Decimal Octal Binary
  • 50.
  • 51. Example 1234 10 = ? 16 1234 10 = 4D2 16 16 1234 77 2 16 4 13 = D 16 0 4
  • 52. Binary to Octal Hexadecimal Decimal Octal Binary
  • 53.
  • 54. Example 1011010111 2 = ? 8 1011010111 2 = 1327 8 1 011 010 111 1 3 2 7
  • 55. Binary to Hexadecimal Hexadecimal Decimal Octal Binary
  • 56.
  • 57.
  • 58. Octal to Hexadecimal Hexadecimal Decimal Octal Binary
  • 59.
  • 60. Example 1076 8 = ? 16 1076 8 = 23E 16 1 0 7 6 001 000 111 110 2 3 E
  • 61. Hexadecimal to Octal Hexadecimal Decimal Octal Binary
  • 62.
  • 63. Example 1F0C 16 = ? 8 1 7 4 1 4 1F0C 16 = 17414 8 1 F 0 C 0001 1111 0000 1100 1 7 4 1 4
  • 64. Exercise – Convert ... Answer Don’t use a calculator! 1AF 703 1110101 33 Hexa- decimal Octal Binary Decimal
  • 65.
  • 66.
  • 67. Example In the lab… 1. Double click on My Computer 2. Right click on C: 3. Click on Properties / 2 30 =

Notas do Editor

  1. A file system is the underlying structure a computer uses to organize data on a hard disk.
  2. A file system is the underlying structure a computer uses to organize data on a hard disk. NTFS is the preferred file system.
  3. “ A number system is a term used for a set of different symbols or digits, which represent a numerical value.”
  4. It is also called natural number system, because it is natural to humans.