SlideShare una empresa de 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  =

Más contenido relacionado

La actualidad más candente

Number system....
Number system....Number system....
Number system....
mshoaib15
 
Cmp104 lec 2 number system
Cmp104 lec 2 number systemCmp104 lec 2 number system
Cmp104 lec 2 number system
kapil078
 
Introduction to the Binary Number System
Introduction to the Binary Number SystemIntroduction to the Binary Number System
Introduction to the Binary Number System
James Hamilton
 
01.number systems
01.number systems01.number systems
01.number systems
rasha3
 

La actualidad más candente (20)

Lecture-2(2): Number System & Conversion
Lecture-2(2): Number System & ConversionLecture-2(2): Number System & Conversion
Lecture-2(2): Number System & Conversion
 
Number System
Number SystemNumber System
Number System
 
Number System
Number SystemNumber System
Number System
 
Number system of computer
Number system of computerNumber system of computer
Number system of computer
 
Number system
Number systemNumber system
Number system
 
Number System
Number SystemNumber System
Number System
 
Decimal number system
Decimal number systemDecimal number system
Decimal number system
 
Introduction to binary number system
Introduction to binary number systemIntroduction to binary number system
Introduction to binary number system
 
Number system....
Number system....Number system....
Number system....
 
Conversion of number system with base concept
Conversion of number system with base conceptConversion of number system with base concept
Conversion of number system with base concept
 
Number System
Number SystemNumber System
Number System
 
Binary number systems
Binary number systemsBinary number systems
Binary number systems
 
Number Systems
Number SystemsNumber Systems
Number Systems
 
11 octal number system
11   octal number system11   octal number system
11 octal number system
 
Number system
Number systemNumber system
Number system
 
Cmp104 lec 2 number system
Cmp104 lec 2 number systemCmp104 lec 2 number system
Cmp104 lec 2 number system
 
Introduction to the Binary Number System
Introduction to the Binary Number SystemIntroduction to the Binary Number System
Introduction to the Binary Number System
 
01.number systems
01.number systems01.number systems
01.number systems
 
Binary arithmetic
Binary arithmeticBinary arithmetic
Binary arithmetic
 
Number system
Number systemNumber system
Number system
 

Similar a W 9 numbering system

Similar 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
 
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
 
Number_Systems (2).ppt
Number_Systems (2).pptNumber_Systems (2).ppt
Number_Systems (2).ppt
 

Más 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
 

Más 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

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 
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
 
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
QucHHunhnh
 

Último (20)

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
 
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
 
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
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
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
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
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...
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
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...
 
Asian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptxAsian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptx
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
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
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
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
 

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 del 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.