Binary A double zero educational presentation. Binary Basics Binary is the language computers use Only 1’s and 0’s can be found in Binary Very large numbers.

Slides:



Advertisements
Similar presentations
How to Convert Decimal Numbers to Binary EXAMPLES.
Advertisements

Base 10 Denary Decimal
Binary & Decimal numbers = 3* * *10 + 5*1 = 3* * * *10 0 Decimal system: Ten digits: 0,1,2,3,…,9 Example:
Agenda Shortcuts converting among numbering systems –Binary to Hex / Hex to Binary –Binary to Octal / Octal to Binary Signed and unsigned binary numbers.
1 CSE1301 Computer Programming Lecture 33 Supplement: Conversions: Unsigned Binary to Decimal Decimal to Unsigned Binary.
Binary numbers. 1 Humans count using decimal numbers (base 10) We use 10 units: 0, 1, 2, 3, 4, 5, 6, 7, 8 and (5.
Addition and Subtraction Investigation Algorithm for the investigation 1. Choose two or three numbers. 2. Arrange them in order, biggest first. 3. Reverse.
Binary Conversion In today’s lesson we will link together the binary and algorithm topics by looking at how to get the computer to: convert binary to decimal.
 A binary number is a number that includes only ones and zeroes.  The number could be of any length  The following are all examples of binary numbers.
Computer Systems 1 Fundamentals of Computing
Computer Systems Nat 4/5 Computing Science Lesson 1: Binary.
Ch 2.1 Translating Equations
Binary Numbers.
© GCSE Computing Candidates should be able to:  convert positive denary whole numbers (0-255) into 8-bit binary numbers and vice versa  add two 8-bit.
Binary and Hexadecimal Numbers
Subnetting Made Simple By Keith W. Noe – CCNA, CCAI Ivy Tech Community College Sellersburg, Indiana.
Copyright 2005 Curt Hill Binary, Octal and Hexadecimal The number bases used in computers.
New Mexico Computer Science for All Author: Ed Angel Title: Bits and Bytes.
Positional Number Systems
PresentsQUANTFor CAT 2009.
CS101 Learning Binary Learning Binary What do you think when you see One hundred and one What does a computer think when it sees 101? 5.
Visualizing Decimal and Binary
THE BINARY NUMBER SYSTEM “There are only 10 types of people in this world: Those who understand BINARY and those who do not.”
Chapter 7 Section 7.2 Addition & Subtraction in Different Bases.
Binary01.ppt Decimal Decimal: Base 10 means 10 Unique numerical digits ,00010,000 Weight Positions 3,
Computer Programming 12 Mr. Jean February 5 th, 2014.
Bombay Cambridge Gurukul
Irvine, Kip R. Assembly Language for Intel-Based Computers 6/e, Signed Integers The highest bit indicates the sign. 1 = negative, 0 = positive.
Computer Systems Nat 4/5 Computing Science Lesson 1: Binary.
Mental Math Mental Computation Grade 4. Quick Addition  This strategy can be used when no regrouping is needed.  Begin at the front end of the number.
Ways to Check for Divisibility Dividing by 2 All even numbers are divisible by 2 Even numbers are numbers that end with either 2, 4, 6, 8, or 0.
Translating Expressions. Addition Phrases  More than  Increase by  Greater than  Add  Total  Plus  Sum.
Subtraction Subtraction is a process of taking away Look at the examples: 2 – 1 = 1 2Take away 1 Leaves 1.
Computer Organization 1 Data Representation Negative Integers.
Continue the sequence 1. ½, 1, 2, 4, 8, __, __, __ 2. __, 5, 9, 13, __, __, , 55, __, 15, __, __ 4. 8, 27, 103, __ 5 Minutes Remain.
TOPICS:  Introduction  Place Value  Binary  Decimal conversion  Decimal  Binary conversion  Related terms  Quiz.
The Hexadecimal System is base 16. It is a shorthand method for representing the 8-bit bytes that are stored in the computer system. This system was chosen.
$100 $200 $300 $400 $100 $200 $300 $400 $300 $200 $100 Subtraction sentence with pictures Subtract to get zero Subtract & balance equations Ways to.
Two’s Complement The language of machines, part II.
Binary Numbers. Base 10 and Base 2  We normally work with numbers in base 10.  In base 10 we use the digits 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9.  Everything.
Computer Maintenance Numbering Systems Copyright © Texas Education Agency, All rights reserved.1.
Digital logic COMP214  Lecture 2 Dr. Sarah M.Eljack Chapter 1 1.
Number systems Visualizing Decimal and Binary. We count in base 10 because people started by counting on their fingers Base 10 is a number system that.
Number systems. Binary system. Bits and bytes. Modern computers “speak” in a digital language composed of 2 digits. The machine language of modern computers.
COMPUTER ORGANIZATION 4 TH LECTURE. ASCII Code  ASCII ( American Standard Code for Information Interchange).  Input and output devices that communicate.
WHAT IS BINARY? Binary is a number system that only uses two digits: 1 and 0. Any information that processed by a computer it is put into sequence of.
Data Representation COE 308 Computer Architecture
Binary & Decimal numbers
Computer Maintenance Numbering Systems Trade & Industrial Education
Data Representation ICS 233
Lec 3: Data Representation
Today’s lesson What: Scientific Notation Why:
Binary numbers: Week 7 Lesson 1
BINARY CODE.
Convert Binary Number to Octal
Learning the Multiplication Facts Part 1
Learning the Multiplication Facts Part 1
Lesson Objectives Aims You should be able to: Convert Denary to Binary
Number Systems Base 2, 10, 16.
CS101 Learning Binary Learning Binary.
Binary Lesson 3 Hexadecimal
Topic 3: Data Hexadecimal.
Digital Electronics and Microprocessors
How to Represent Numbers on a Computer
Binary Addition (1 of 2) Two 1-bit values A B A + B 1
Binary Lesson 4 Hexadecimal and Binary Practice
The Understanding of Binary Math & Conversion
What are fair shares?.
Data Representation COE 308 Computer Architecture
Presentation transcript:

Binary A double zero educational presentation

Binary Basics Binary is the language computers use Only 1’s and 0’s can be found in Binary Very large numbers can be translated into Binary.

Binary Digit System Non Binary 1’s 10’s 100’s 1,000’s 10,000’s 100,000’s 1,000,000’s Binary 1’s 2’s 4’s 8’s 16’s 32’s 64’s 128’s

Steps to convert a number to Binary Chose a number below 255 For this example, we will choosing 176

Step One 128’s 64’s 32’s 16’s 8’s 4’s 2’s 1’s Is 176 bigger than 128? Yes, so place a one in the 128’s place Then subtract 128 from 176. The result is 48

Step Two 128’s 64’s 32’s 16’s 8’s 4’s 2’s 1’s 1_____________________________ Is 48 bigger than 64? No, place a zero under the 64’s place

Step Three 128’s 64’s 32’s 16’s 8’s 4’s 2’s 1’s 1_____0________________________ Is 48 greater than 32? Yes, subtract 32 from 48. The result is 16

Step Four 128’s 64’s 32’s 16’s 8’s 4’s 2’s 1’s 1_____0___1____________________ Is 16 equal to or greater than 16? Yes, subtract 16 from 16. The result is zero.

Step Five 128’s 64’s 32’s 16’s 8’s 4’s 2’s 1’s 1_____0___1____1_______________ Due to the fact that zero is less than all remaining digits place zeros in all remaining digits.

Step Six 128’s 64’s 32’s 16’s 8’s 4’s 2’s 1’s 1_____0___1____1__0___0__0___0_ So the number 176 would be in binary, represented by a byte of 8 bits.

128’s 64’s 32’s 16’s 8’s 4’s 2’s 1’s 1_____1___1____1__1___1__1___1_ If all the bits in the byte were 1’s, which would be its highest value, it would add up to = 255. The highest value a byte can have is 255.