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 (20)

Number system....
Number system....Number system....
Number system....
 
Number system computer fundamental
 Number  system computer fundamental  Number  system computer fundamental
Number system computer fundamental
 
Binary number systems
Binary number systemsBinary number systems
Binary number systems
 
PPT ON NUMBER SYSTEM
PPT ON NUMBER SYSTEMPPT ON NUMBER SYSTEM
PPT ON NUMBER SYSTEM
 
Number System
Number SystemNumber System
Number System
 
01.number systems
01.number systems01.number systems
01.number systems
 
Basic of number system
Basic of number systemBasic of number system
Basic of number system
 
Sig figs.ppt
Sig figs.pptSig figs.ppt
Sig figs.ppt
 
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
 
01.Number Systems
01.Number Systems01.Number Systems
01.Number Systems
 
Number system
Number systemNumber system
Number system
 
Number System Conversion
Number System ConversionNumber System Conversion
Number System Conversion
 
Number systems
Number systemsNumber systems
Number systems
 
Number systems
Number systemsNumber systems
Number systems
 
Computer number systems
Computer number systemsComputer number systems
Computer number systems
 
Number system
Number systemNumber system
Number system
 
Lecture-2(2): Number System & Conversion
Lecture-2(2): Number System & ConversionLecture-2(2): Number System & Conversion
Lecture-2(2): Number System & Conversion
 

Destaque

11 octal number system
11   octal number system11   octal number system
11 octal number systemLee Chadwick
 
Mrs. Noland's Binary System ppt
Mrs. Noland's Binary System pptMrs. Noland's Binary System ppt
Mrs. Noland's Binary System pptdsparone
 
BINARY NUMBER SYSTEM
BINARY NUMBER SYSTEMBINARY NUMBER SYSTEM
BINARY NUMBER SYSTEMZaheer Abbasi
 
Introduction to the Binary Number System
Introduction to the Binary Number SystemIntroduction to the Binary Number System
Introduction to the Binary Number SystemJames Hamilton
 
Decimal to binary number
Decimal to binary numberDecimal to binary number
Decimal to binary numberguestd8696a
 

Destaque (8)

11 octal number system
11   octal number system11   octal number system
11 octal number system
 
Conversion binary to decimal
Conversion binary to decimalConversion binary to decimal
Conversion binary to decimal
 
Mrs. Noland's Binary System ppt
Mrs. Noland's Binary System pptMrs. Noland's Binary System ppt
Mrs. Noland's Binary System ppt
 
BINARY NUMBER SYSTEM
BINARY NUMBER SYSTEMBINARY NUMBER SYSTEM
BINARY NUMBER SYSTEM
 
08. Numeral Systems
08. Numeral Systems08. Numeral Systems
08. Numeral Systems
 
Introduction to the Binary Number System
Introduction to the Binary Number SystemIntroduction to the Binary Number System
Introduction to the Binary Number System
 
Number system
Number systemNumber system
Number system
 
Decimal to binary number
Decimal to binary numberDecimal to binary number
Decimal to binary number
 

Semelhante a W 9 numbering system

Chapter 2.ppt
Chapter 2.pptChapter 2.ppt
Chapter 2.pptNMohd3
 
Basics of Computer For Begginers
Basics of Computer For BegginersBasics of Computer For Begginers
Basics of Computer For Begginerskavithapriya C J
 
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_fa16John Todora
 
Chapter two FHI.pptx
Chapter two FHI.pptxChapter two FHI.pptx
Chapter two FHI.pptxODAATUBE1
 
Number systems and conversions
Number systems and conversionsNumber systems and conversions
Number systems and conversionsSusantha Herath
 
Chapter 1 digital design.pptx
Chapter 1 digital design.pptxChapter 1 digital design.pptx
Chapter 1 digital design.pptxAliaaTarek5
 
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.pptxmust322322
 

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

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

Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
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
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfchloefrazer622
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...fonyou31
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
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
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room servicediscovermytutordmt
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 

Último (20)

Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
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
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
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
 
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
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room service
 
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"
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
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
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
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"
 

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.