SlideShare a Scribd company logo
7/8/2020 1
Samina khan
Fazaia Degree College Risalpur
• Chapter 1 More on Number System
• Chapter 2 Working on Word
• Chapter 3 Working with Spreadsheet
• Chapter 4 Problem solving
• Chapter 5 Introduction to programming
• Chapter 6 Programming in GW-BASIC
• Chapter 7 Data verification & validation
• Chapter 8 Data protection & security
• Chapter 9 Applications of computers
• Chapter 11 The future of Technology
• Chapter 12 Creating webpages
7/8/2020
2
CHAPTER 1
Lets recall
• Binary & decimal number system.
• Conversion of binary into decimal (Expansion
method)
• Conversion of decimal into binary (Repeated
division)
• Add and subtract two binary numbers
We will learn how to multiply and divide binary numbers
Conversion of binary numbers into decimal
• To convert a binary number into decimal ,we use
the expansion method.
• Convert (100111)2 into decimal
= (1x25)+(0x24) +(0x23) +(1x22) +(1x21) +(1x20)
=(1x32)+(0x16)+(0x8)+(1x4)+(1x2)+(1x1)
=32+0+0+4+2+1
=(39)10
Conversion of decimal numbers into binary
• To convert a decimal number into binary ,we use
the repeated division method.
Number Remainder
2 39
2 19 1
2 9 1
2 4 1
2 2 0
1 0
Multiplication of binary numbers
• Multiplying binary numbers is quite simple.
• It only needs to multiply 1s and 0s.
• We also need to remember the rule of addition.
Operation Result
0+0 0
0+1 1
1+0 1
1+1 0 with 1 carried over to the next higher column
Rules of binary addition
Example: 1
• Multiply the numbers (111)2and (1011)2
1 0 1 1
x 1 1 1
1 0 1 1
1 0 1 1 x
1 0 1 1 x x
1 0 0 1 1 0 1
Operation Result
0+0 0
0+1 1
1+0 1
1+1 0 with 1 carried over to
the next higher column
1+1+1=11
Example: 2
• Multiply the numbers (101)2and (1001)2
Operation Result
0+0 0
0+1 1
1+0 1
1+1 0 with 1 carried over to
the next higher column
x
xx
Division of binary numbers
• For division of binary numbers, we need to
remember the rules of binary subtraction.
Rules of binary Subtraction
Operation Result
0-0 0
0-1 1 with 1 borrowed from the next position
1-0 1
1-1 0
Example: 1
• Divide (11100)2 by (11)2
Operation Result
0-0 0
0-1 1 with 1 borrowed from
the next position
1-0 1
1-1 0
0011
11√ 11100
–0
10
–0
100
–11
011
–11
XX
0 0 1 1
x 1 1
0 0 1 1
0 1 1 x
1 0 0 1
Lets Check
the answer
now
Example: 2
Operation Result
0-0 0
0-1 1 with 1 borrowed from
the next position
1-0 1
1-1 0
Conversion of decimal numbers into
octal
• To convert decimal number into binary, we
divide it by 2( Book 7)
• Here we will divide the number by 8.
• We keep dividing the quotient till we get a
quotient less than 8.
• We then record the remainders from bottom
to top to get the answer.
Conversion of decimal numbers into
octal
• Example:1 Convert (45)10 into its octal
equivalent.
Number Remainder
8 45
5 5
(45)10 =(55)8
Conversion of decimal numbers into
octal
• Example: 2 Convert (228)10 into its octal
equivalent.
Number Remainder
8 228
8 28 4
3 4
(228)10 =(344)8
Conversion of decimal numbers into
Hexadecimal
• We can convert decimal into hexadecimal values
using the repeated division method.
• We divide the number by 16.
• We also remember that in the hexadecimal
system values from 10 to 15 are represented by
the letters A,B,C,D,E and F respectively.
Decimal 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Hexadecimal 0 1 2 3 4 5 6 7 8 9 A B C D E F
Conversion of decimal numbers into
Hexadecimal
• Here we will divide the number by 16.
• We keep dividing the quotient till we get a
quotient less than 16.
• We then record the remainders from bottom
to top to get the answer.
Conversion of decimal numbers into
Hexadecimal
• Example:1 Convert (55)10 into its hexadecimal
equivalent.
Number Remainder
16 55
3 7
(55)10 =(37)16
Conversion of decimal numbers into
Hexadecimal
• Example:2 Convert (225)10 into its
hexadecimal equivalent.
Number Remainder
16 225
14 1
(225)10 =(E1)16
Since 14= E
Conversion of Octal into decimal
numbers
• Here we will use the expansion method.
• Base will be 8
• Example:1 Convert (74)8 into its decimal
equivalent.
• Solution: (7 x 81) + (4 x 80)
= (7 x 8) + (4 x 1)
= 56 + 4
= 60
(74)8 = (60)10
since 80 =1
Conversion of Octal into decimal
numbers
• Example:2 Convert (546)8 into its decimal
equivalent.
• Solution: (5 x 82) +(4 x 81) + (6 x 80)
= (5 x 64)+ (4 x 8) + (6 x 1)
= 320 + 32+6
= 358
(546)8 = (358)10
Conversion of hexadecimal into decimal
numbers
• Here we will use the expansion method.
• Base will be 16
• Example: Convert (F8)16 into its decimal
equivalent.
• Solution: (15 x 161) + (8 x 160)
= (15 x 16) + (8 x 1)
= 240 + 8
= 248
(F8)16 = (248)10
Quiz
A. Fill in the blanks.
1. According to the rules of binary addition, 1+1=
2. According to the rules of binary subtraction, 10-1=
3. Decimal numbers can be converted into octal by using
the method.
4. Hexadecimal values can be converted into by
using the expansion method.
5. In the hexadecimal system, 14 is represented by the
letter
10
Repeated division
decimal
E
1
Quiz
B. State whether the following statement is true or false.
1. In binary addition 1+0= 10 False (1+1=10)
2. The repeated division method is used to convert
decimal numbers into their octal equivalent. True
3. The hexadecimal equivalent of (50) 10 is 36. False (32)
4. Octal numbers are converted into decimal numbers by
the expansion method. True.
5. The octal equivalent of (100) 10 is 64. False (144)
More on number system

More Related Content

What's hot

Mrs. Noland's Binary System ppt
Mrs. Noland's Binary System pptMrs. Noland's Binary System ppt
Mrs. Noland's Binary System ppt
dsparone
 
Chapter 1: Binary System
 Chapter 1: Binary System Chapter 1: Binary System
Chapter 1: Binary System
Er. Nawaraj Bhandari
 
Number system
Number systemNumber system
Number systemkashee99
 
Number System in CoMpUtEr
Number System in CoMpUtErNumber System in CoMpUtEr
Number System in CoMpUtEr
vishal bansal
 
Number System Conversion
Number System ConversionNumber System Conversion
Number System Conversion
Faraz Ahmed
 
Number Systems and Binary Aritmetics
Number Systems and Binary AritmeticsNumber Systems and Binary Aritmetics
Number Systems and Binary Aritmetics
Delowar Hossain
 
Number System
Number SystemNumber System
Number System
Web Designer
 
Binary code - Beginning
Binary code - BeginningBinary code - Beginning
Binary code - Beginning
Debbie Eitner
 
Number system
Number systemNumber system
Number system
Sajib
 
Binary number systems
Binary number systemsBinary number systems
Binary number systems
KULDEEP MATHUR
 
Number system
Number system  Number system
Number system
anjineyalus
 
Binary number ppt
Binary number pptBinary number ppt
Binary number ppt
Ankit Gupta
 
Number system
Number systemNumber system
Number system
Divya Shrivastava
 
Number Systems Basic Concepts
Number Systems Basic ConceptsNumber Systems Basic Concepts
Number Systems Basic Concepts
Laguna State Polytechnic University
 
NUMBER SYSTEM
NUMBER SYSTEMNUMBER SYSTEM
Number system
Number systemNumber system
Number system
Chauhan Dharmendra
 
Conversion of Number Systems
Conversion of Number SystemsConversion of Number Systems
Conversion of Number Systems
Sanjeev Kumar Prajapati
 
Number System
Number SystemNumber System
Number System
MusPaintal
 
Topic 1 Data Representation
Topic 1 Data RepresentationTopic 1 Data Representation
Topic 1 Data Representationekul
 

What's hot (20)

Mrs. Noland's Binary System ppt
Mrs. Noland's Binary System pptMrs. Noland's Binary System ppt
Mrs. Noland's Binary System ppt
 
Chapter 1: Binary System
 Chapter 1: Binary System Chapter 1: Binary System
Chapter 1: Binary System
 
Number system
Number systemNumber system
Number system
 
Number System in CoMpUtEr
Number System in CoMpUtErNumber System in CoMpUtEr
Number System in CoMpUtEr
 
Number System Conversion
Number System ConversionNumber System Conversion
Number System Conversion
 
Number Systems and Binary Aritmetics
Number Systems and Binary AritmeticsNumber Systems and Binary Aritmetics
Number Systems and Binary Aritmetics
 
Number System
Number SystemNumber System
Number System
 
Binary code - Beginning
Binary code - BeginningBinary code - Beginning
Binary code - Beginning
 
Number system
Number systemNumber system
Number system
 
Binary number systems
Binary number systemsBinary number systems
Binary number systems
 
Number system
Number system  Number system
Number system
 
Binary number ppt
Binary number pptBinary number ppt
Binary number ppt
 
Number system
Number systemNumber system
Number system
 
Number Systems Basic Concepts
Number Systems Basic ConceptsNumber Systems Basic Concepts
Number Systems Basic Concepts
 
NUMBER SYSTEM
NUMBER SYSTEMNUMBER SYSTEM
NUMBER SYSTEM
 
Number system
Number systemNumber system
Number system
 
Conversion of Number Systems
Conversion of Number SystemsConversion of Number Systems
Conversion of Number Systems
 
Basics of digital electronics
Basics of digital electronicsBasics of digital electronics
Basics of digital electronics
 
Number System
Number SystemNumber System
Number System
 
Topic 1 Data Representation
Topic 1 Data RepresentationTopic 1 Data Representation
Topic 1 Data Representation
 

Similar to More on number system

Number systems
Number systemsNumber systems
Number systemsKumar
 
UNIT - I.pptx
UNIT - I.pptxUNIT - I.pptx
UNIT - I.pptx
amudhak10
 
UNIT - I.pptx
UNIT - I.pptxUNIT - I.pptx
UNIT - I.pptx
amudhak10
 
Standard 9th Number System Power point presentation
Standard 9th Number System Power point presentationStandard 9th Number System Power point presentation
Standard 9th Number System Power point presentation
hemangipednekar0812
 
Course Name: Digital System Design Number System.pdf
Course Name: Digital System Design Number System.pdfCourse Name: Digital System Design Number System.pdf
Course Name: Digital System Design Number System.pdf
MdJubayerFaisalEmon
 
Lecture
LectureLecture
Lecture
Ahmed Atallah
 
Number_Systems (2).ppt
Number_Systems (2).pptNumber_Systems (2).ppt
Number_Systems (2).ppt
nivedita murugan
 
DATA REPRESENTATION.pptx
DATA REPRESENTATION.pptxDATA REPRESENTATION.pptx
DATA REPRESENTATION.pptx
MamataAnilgod
 
Ch. 1.pdf
Ch. 1.pdfCh. 1.pdf
Ch. 1.pdf
totajo2018
 
Lecture-2(2): Number System & Conversion
Lecture-2(2): Number System & ConversionLecture-2(2): Number System & Conversion
Lecture-2(2): Number System & Conversion
Mubashir Ali
 
Lecture 2 ns
Lecture 2 nsLecture 2 ns
Lecture 2 ns
Rabiul Sarker
 
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
 
Cse115 lecture01numbersystems
Cse115 lecture01numbersystemsCse115 lecture01numbersystems
Cse115 lecture01numbersystems
Md. Ashikur Rahman
 
2.1 data represent on cpu
2.1 data represent on cpu2.1 data represent on cpu
2.1 data represent on cpuWan Afirah
 
Digital Electronics – Unit I.pdf
Digital Electronics – Unit I.pdfDigital Electronics – Unit I.pdf
Digital Electronics – Unit I.pdf
Kannan Kanagaraj
 
Number systems r002
Number systems  r002Number systems  r002
Number systems r002
arunachalamr16
 
Alu1
Alu1Alu1
Data representation notes class 11
Data representation notes class 11Data representation notes class 11
Data representation notes class 11
ShresthMaurya1
 
Number system and their conversion
Number system and their conversionNumber system and their conversion
Number system and their conversion
Ram Pratap Singh
 

Similar to More on number system (20)

Number systems
Number systemsNumber systems
Number systems
 
UNIT - I.pptx
UNIT - I.pptxUNIT - I.pptx
UNIT - I.pptx
 
UNIT - I.pptx
UNIT - I.pptxUNIT - I.pptx
UNIT - I.pptx
 
Standard 9th Number System Power point presentation
Standard 9th Number System Power point presentationStandard 9th Number System Power point presentation
Standard 9th Number System Power point presentation
 
Course Name: Digital System Design Number System.pdf
Course Name: Digital System Design Number System.pdfCourse Name: Digital System Design Number System.pdf
Course Name: Digital System Design Number System.pdf
 
Lecture
LectureLecture
Lecture
 
Number_Systems (2).ppt
Number_Systems (2).pptNumber_Systems (2).ppt
Number_Systems (2).ppt
 
DATA REPRESENTATION.pptx
DATA REPRESENTATION.pptxDATA REPRESENTATION.pptx
DATA REPRESENTATION.pptx
 
Ch. 1.pdf
Ch. 1.pdfCh. 1.pdf
Ch. 1.pdf
 
Lecture-2(2): Number System & Conversion
Lecture-2(2): Number System & ConversionLecture-2(2): Number System & Conversion
Lecture-2(2): Number System & Conversion
 
Lecture 2 ns
Lecture 2 nsLecture 2 ns
Lecture 2 ns
 
Number System.pptx
Number System.pptxNumber System.pptx
Number System.pptx
 
Number System.pptx
Number System.pptxNumber System.pptx
Number System.pptx
 
Cse115 lecture01numbersystems
Cse115 lecture01numbersystemsCse115 lecture01numbersystems
Cse115 lecture01numbersystems
 
2.1 data represent on cpu
2.1 data represent on cpu2.1 data represent on cpu
2.1 data represent on cpu
 
Digital Electronics – Unit I.pdf
Digital Electronics – Unit I.pdfDigital Electronics – Unit I.pdf
Digital Electronics – Unit I.pdf
 
Number systems r002
Number systems  r002Number systems  r002
Number systems r002
 
Alu1
Alu1Alu1
Alu1
 
Data representation notes class 11
Data representation notes class 11Data representation notes class 11
Data representation notes class 11
 
Number system and their conversion
Number system and their conversionNumber system and their conversion
Number system and their conversion
 

More from samina khan

UNDERSTANDING SELF AND OTHERS.pptx
UNDERSTANDING SELF AND OTHERS.pptxUNDERSTANDING SELF AND OTHERS.pptx
UNDERSTANDING SELF AND OTHERS.pptx
samina khan
 
INFORMATION TECHNOLOGY.pptx
INFORMATION TECHNOLOGY.pptxINFORMATION TECHNOLOGY.pptx
INFORMATION TECHNOLOGY.pptx
samina khan
 
scaffolding in teaching.pptx
scaffolding in teaching.pptxscaffolding in teaching.pptx
scaffolding in teaching.pptx
samina khan
 
REFLECTIVE TEACHING.pptx
REFLECTIVE TEACHING.pptxREFLECTIVE TEACHING.pptx
REFLECTIVE TEACHING.pptx
samina khan
 
PEDAGOGICAL SKILLS.pptx
PEDAGOGICAL SKILLS.pptxPEDAGOGICAL SKILLS.pptx
PEDAGOGICAL SKILLS.pptx
samina khan
 
What is an Autobiography?
 What is an Autobiography? What is an Autobiography?
What is an Autobiography?
samina khan
 
Picture description
Picture descriptionPicture description
Picture description
samina khan
 
The Internet and World Wide Web
The Internet and World Wide WebThe Internet and World Wide Web
The Internet and World Wide Web
samina khan
 
Computer security & ethics
Computer security  & ethicsComputer security  & ethics
Computer security & ethics
samina khan
 
Computer logic and gates
Computer logic and gatesComputer logic and gates
Computer logic and gates
samina khan
 
Problem solving
Problem solvingProblem solving
Problem solving
samina khan
 
Computer networks
Computer networksComputer networks
Computer networks
samina khan
 
Classroom management
Classroom managementClassroom management
Classroom management
samina khan
 
Stress management
Stress managementStress management
Stress management
samina khan
 
Classroom management
Classroom managementClassroom management
Classroom management
samina khan
 
The future of technology
The future of technologyThe future of technology
The future of technology
samina khan
 
Lesson plan:Multiplication and division of binary numbers
Lesson plan:Multiplication and division of binary numbersLesson plan:Multiplication and division of binary numbers
Lesson plan:Multiplication and division of binary numbers
samina khan
 
Computer networks grade 7
Computer networks grade 7Computer networks grade 7
Computer networks grade 7
samina khan
 
Applications of computer
Applications of computerApplications of computer
Applications of computer
samina khan
 
Data protection and security
Data protection and securityData protection and security
Data protection and security
samina khan
 

More from samina khan (20)

UNDERSTANDING SELF AND OTHERS.pptx
UNDERSTANDING SELF AND OTHERS.pptxUNDERSTANDING SELF AND OTHERS.pptx
UNDERSTANDING SELF AND OTHERS.pptx
 
INFORMATION TECHNOLOGY.pptx
INFORMATION TECHNOLOGY.pptxINFORMATION TECHNOLOGY.pptx
INFORMATION TECHNOLOGY.pptx
 
scaffolding in teaching.pptx
scaffolding in teaching.pptxscaffolding in teaching.pptx
scaffolding in teaching.pptx
 
REFLECTIVE TEACHING.pptx
REFLECTIVE TEACHING.pptxREFLECTIVE TEACHING.pptx
REFLECTIVE TEACHING.pptx
 
PEDAGOGICAL SKILLS.pptx
PEDAGOGICAL SKILLS.pptxPEDAGOGICAL SKILLS.pptx
PEDAGOGICAL SKILLS.pptx
 
What is an Autobiography?
 What is an Autobiography? What is an Autobiography?
What is an Autobiography?
 
Picture description
Picture descriptionPicture description
Picture description
 
The Internet and World Wide Web
The Internet and World Wide WebThe Internet and World Wide Web
The Internet and World Wide Web
 
Computer security & ethics
Computer security  & ethicsComputer security  & ethics
Computer security & ethics
 
Computer logic and gates
Computer logic and gatesComputer logic and gates
Computer logic and gates
 
Problem solving
Problem solvingProblem solving
Problem solving
 
Computer networks
Computer networksComputer networks
Computer networks
 
Classroom management
Classroom managementClassroom management
Classroom management
 
Stress management
Stress managementStress management
Stress management
 
Classroom management
Classroom managementClassroom management
Classroom management
 
The future of technology
The future of technologyThe future of technology
The future of technology
 
Lesson plan:Multiplication and division of binary numbers
Lesson plan:Multiplication and division of binary numbersLesson plan:Multiplication and division of binary numbers
Lesson plan:Multiplication and division of binary numbers
 
Computer networks grade 7
Computer networks grade 7Computer networks grade 7
Computer networks grade 7
 
Applications of computer
Applications of computerApplications of computer
Applications of computer
 
Data protection and security
Data protection and securityData protection and security
Data protection and security
 

Recently uploaded

Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
KatiaHIMEUR1
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
Product School
 
Generating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using SmithyGenerating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using Smithy
g2nightmarescribd
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
Elena Simperl
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
DianaGray10
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
Prayukth K V
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Thierry Lestable
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
Sri Ambati
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
Safe Software
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
Dorra BARTAGUIZ
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Product School
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
OnBoard
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
Product School
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
Laura Byrne
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
Ana-Maria Mihalceanu
 

Recently uploaded (20)

Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
 
Generating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using SmithyGenerating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using Smithy
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
 

More on number system

  • 1. 7/8/2020 1 Samina khan Fazaia Degree College Risalpur
  • 2. • Chapter 1 More on Number System • Chapter 2 Working on Word • Chapter 3 Working with Spreadsheet • Chapter 4 Problem solving • Chapter 5 Introduction to programming • Chapter 6 Programming in GW-BASIC • Chapter 7 Data verification & validation • Chapter 8 Data protection & security • Chapter 9 Applications of computers • Chapter 11 The future of Technology • Chapter 12 Creating webpages 7/8/2020 2
  • 4. Lets recall • Binary & decimal number system. • Conversion of binary into decimal (Expansion method) • Conversion of decimal into binary (Repeated division) • Add and subtract two binary numbers We will learn how to multiply and divide binary numbers
  • 5. Conversion of binary numbers into decimal • To convert a binary number into decimal ,we use the expansion method. • Convert (100111)2 into decimal = (1x25)+(0x24) +(0x23) +(1x22) +(1x21) +(1x20) =(1x32)+(0x16)+(0x8)+(1x4)+(1x2)+(1x1) =32+0+0+4+2+1 =(39)10
  • 6. Conversion of decimal numbers into binary • To convert a decimal number into binary ,we use the repeated division method. Number Remainder 2 39 2 19 1 2 9 1 2 4 1 2 2 0 1 0
  • 7. Multiplication of binary numbers • Multiplying binary numbers is quite simple. • It only needs to multiply 1s and 0s. • We also need to remember the rule of addition. Operation Result 0+0 0 0+1 1 1+0 1 1+1 0 with 1 carried over to the next higher column Rules of binary addition
  • 8. Example: 1 • Multiply the numbers (111)2and (1011)2 1 0 1 1 x 1 1 1 1 0 1 1 1 0 1 1 x 1 0 1 1 x x 1 0 0 1 1 0 1 Operation Result 0+0 0 0+1 1 1+0 1 1+1 0 with 1 carried over to the next higher column 1+1+1=11
  • 9. Example: 2 • Multiply the numbers (101)2and (1001)2 Operation Result 0+0 0 0+1 1 1+0 1 1+1 0 with 1 carried over to the next higher column x xx
  • 10. Division of binary numbers • For division of binary numbers, we need to remember the rules of binary subtraction. Rules of binary Subtraction Operation Result 0-0 0 0-1 1 with 1 borrowed from the next position 1-0 1 1-1 0
  • 11. Example: 1 • Divide (11100)2 by (11)2 Operation Result 0-0 0 0-1 1 with 1 borrowed from the next position 1-0 1 1-1 0 0011 11√ 11100 –0 10 –0 100 –11 011 –11 XX 0 0 1 1 x 1 1 0 0 1 1 0 1 1 x 1 0 0 1 Lets Check the answer now
  • 12. Example: 2 Operation Result 0-0 0 0-1 1 with 1 borrowed from the next position 1-0 1 1-1 0
  • 13. Conversion of decimal numbers into octal • To convert decimal number into binary, we divide it by 2( Book 7) • Here we will divide the number by 8. • We keep dividing the quotient till we get a quotient less than 8. • We then record the remainders from bottom to top to get the answer.
  • 14. Conversion of decimal numbers into octal • Example:1 Convert (45)10 into its octal equivalent. Number Remainder 8 45 5 5 (45)10 =(55)8
  • 15. Conversion of decimal numbers into octal • Example: 2 Convert (228)10 into its octal equivalent. Number Remainder 8 228 8 28 4 3 4 (228)10 =(344)8
  • 16. Conversion of decimal numbers into Hexadecimal • We can convert decimal into hexadecimal values using the repeated division method. • We divide the number by 16. • We also remember that in the hexadecimal system values from 10 to 15 are represented by the letters A,B,C,D,E and F respectively. Decimal 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 Hexadecimal 0 1 2 3 4 5 6 7 8 9 A B C D E F
  • 17. Conversion of decimal numbers into Hexadecimal • Here we will divide the number by 16. • We keep dividing the quotient till we get a quotient less than 16. • We then record the remainders from bottom to top to get the answer.
  • 18. Conversion of decimal numbers into Hexadecimal • Example:1 Convert (55)10 into its hexadecimal equivalent. Number Remainder 16 55 3 7 (55)10 =(37)16
  • 19. Conversion of decimal numbers into Hexadecimal • Example:2 Convert (225)10 into its hexadecimal equivalent. Number Remainder 16 225 14 1 (225)10 =(E1)16 Since 14= E
  • 20. Conversion of Octal into decimal numbers • Here we will use the expansion method. • Base will be 8 • Example:1 Convert (74)8 into its decimal equivalent. • Solution: (7 x 81) + (4 x 80) = (7 x 8) + (4 x 1) = 56 + 4 = 60 (74)8 = (60)10 since 80 =1
  • 21. Conversion of Octal into decimal numbers • Example:2 Convert (546)8 into its decimal equivalent. • Solution: (5 x 82) +(4 x 81) + (6 x 80) = (5 x 64)+ (4 x 8) + (6 x 1) = 320 + 32+6 = 358 (546)8 = (358)10
  • 22. Conversion of hexadecimal into decimal numbers • Here we will use the expansion method. • Base will be 16 • Example: Convert (F8)16 into its decimal equivalent. • Solution: (15 x 161) + (8 x 160) = (15 x 16) + (8 x 1) = 240 + 8 = 248 (F8)16 = (248)10
  • 23. Quiz A. Fill in the blanks. 1. According to the rules of binary addition, 1+1= 2. According to the rules of binary subtraction, 10-1= 3. Decimal numbers can be converted into octal by using the method. 4. Hexadecimal values can be converted into by using the expansion method. 5. In the hexadecimal system, 14 is represented by the letter 10 Repeated division decimal E 1
  • 24. Quiz B. State whether the following statement is true or false. 1. In binary addition 1+0= 10 False (1+1=10) 2. The repeated division method is used to convert decimal numbers into their octal equivalent. True 3. The hexadecimal equivalent of (50) 10 is 36. False (32) 4. Octal numbers are converted into decimal numbers by the expansion method. True. 5. The octal equivalent of (100) 10 is 64. False (144)