Binary Numbers? Foley SED 514 Section 1.14 1/2/2019.

Slides:



Advertisements
Similar presentations
BITS, BYTES, AND THE BINARY SYSTEM HOW PROGRAMS CREATE IMAGES ON YOUR PC.
Advertisements

John Owen, Rockport Fulton HS
A-Level Computing#BristolMet Session Objectives#8 express numbers in binary, octal and hexadecimal explain the use of code to represent a character set.
Representing Data, Pictures, Time, and Size in Computer
Processing Data.
Digital Circuit Why Digital Circuit? – Digital signals ( 0 and 1) are very easy to handle with electronic circuits only 2 states needed: Switch ON or OFF,
 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 Number Systems This presentation will show conversions between binary, decimal, and hexadecimal numbers.
Computer Fluency Binary Systems. Humans Decimal Numbers (base 10) Decimal Numbers (base 10) Sign-Magnitude (-324) Sign-Magnitude (-324) Decimal Fractions.
Binary “There are 10 types of people in the world… those that understand binary and those that don’t.”
Numbering Systems Decimal (Denary) base 10. Clumsy when dealing with computers. Other systems –Binary –Octal –Hexadecimal Convenient when dealing with.
Number Systems.
1 Number SystemsLecture 8. 2 BINARY (BASE 2) numbers.
Data Representation S2. This unit covers how the computer represents- Numbers Text Graphics Control.
Binary Code.
What do computers know?  All they really know is on or off.  Kind of like a light switch  Computers aren’t nearly as smart as you are!
©2010 Akula LLC, Jeremy R. Hertzberg, BS CMPE Binary Numbers Zeros and Ones
ENGINEERS FUTURE To optimize things When we type some letters or words, the computer translates them in numbers as computers can understand only numbers.
Basic Electricity and Electronics Module Two Basic Electronics Copyright © Texas Education Agency, All rights reserved.
Visualizing Decimal and Binary
1 Computer Science LESSON 1 on Number Bases. 2 Objective In this lesson you’ll learn about different Number Bases, specifically about those used by the.
1 1 7-Dec-15 Binary Converting to and from decimal.
Binary Arithmetic CPSC 101: Chp 2 John Lamertina.
Circuits & Switches. Electricity Formed when an excess of positive or negative particles that are parts of atoms attempts to balance itself=electrical.
Computer Studies Today Chapter 19 1 Chapter 19. Computer Studies Today Chapter 19 2 »Information stored in a computer is in two states: –ON –OFF.
Activity 1 Research / Revise how RAM stores DATA 5 minutes 1 0.
A+ Computer Repair Lesson 3: Number System. Objectives Define binary, decimal, octal, and hexadecimal numbering systems. Define binary, decimal, octal,
Fall’ 2014 Lesson - 1 Number System & Program Design CSE 101.
Basic Electricity and Electronics Module Two Basic Electronics Copyright © Texas Education Agency, All rights reserved.
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.
Coding Part 2. Weight of the Digit 3672 Thousands (10 3 )Hundreds (10 2 )Tens (10 1 )Units (1) = Weights Decimal Example (3672) 10 Binary.
Decimal Numbers.
Understanding binary Understanding Computers.
Counting in Different Bases
Consider this number: , Ones (7 ones) Tens (no tens)
Exploring Computer Science – Lesson 2-5
Discrete Mathematics Numbering System.
Digital Electronics INTRODUCTION ANALOG VS DIGITAL NUMBER SYSTEMS.
Computer Science LESSON 1 on Number Bases.
Binary Lesson 1 Nybbles.
Tools of Web Development 1: Module A: Numbering Systems
Number Systems.
COUNTING IN BINARY Binary weightings 0 x x x x 8
Visualizing Decimal and Binary
Binary Lesson 1 Nybbles.
Binary Lesson 1 Nybbles.
Binary Lesson 3 Hexadecimal
Binary Lesson 2 Bytes.
Binary Lesson 2 Bytes.
Decimal Place Value.
Binary Lesson 3 Hexadecimal
Data Binary Conversion.
Binary Lesson 2 Bytes.
How Computers Store Data
Binary Lesson 3 Hexadecimal
AP Computer Science LESSON 1 on Number Bases.
John Owen, Rockport Fulton HS
The basics of any electronic device means either electricity is flowing or it is not i.e. a switch is either on or off Computers are electronic devices.
COUNTING IN BINARY Binary weightings 0 x x x x 8
Binary Lesson 4 Hexadecimal and Binary Practice
Binary Lesson 1 Nybbles.
Transforming Data into Information
5th Grade Place Value I ,.
GCSE COMPUTER SCIENCE Topic 3 - Data 3.1 Binary.
Counting
Number System.
1 1. Binary Basics Year 8 Unit 1 Bitmap Graphics.
Course Code 114 Introduction to Computer Science
Binary Lesson 1 Nybbles.
Section 6 Primitive Data Types
Presentation transcript:

Binary Numbers? Foley SED 514 Section 1.14 1/2/2019

Why isn’t there a symbol for 10? How do numbers work? Counting 0 1 2 3 4 5 6 7 8 9 10 10? Why isn’t there a symbol for 10? 1/2/2019

1/2/2019

Decimal Number What is the value of 123? 3 ones (100) 2 tens (101) 1 hundreds (102) = (1 x 100) + (2 x 10) + (3 x 1) 1/2/2019

1/2/2019

What if we only had 8 fingers? We would not have the numbers 8 & 9 We would count up to 7 and then 10! Why? What would “10” be equal to? What would “100” be? 1/2/2019

Octal Numbers What is the value of 123:base8? 3 ones (80) 2 eights (81) 1 sixty-fours (82) What is that in decimal? = (1 x 64) + (2 x 8) + (3 x 1) 1/2/2019

What if you only had 2 fingers? Only two digits 0 and 1 What is the value of 123:base2? 1/2/2019

Numbers in binary OK, what is the value of 111:base2? 1 ones (20) 1 two (21) 1 four (22) What is that in decimal? = (1 x 4) + (1 x 2) + (1 x 1) 1/2/2019

More questions Binary Decimal 101 10001 1010101 123 1/2/2019

Why do we care about binary? Just like a light switch, on = 1 off =0 We can count (and remember) with electricity! Vacuum tubes and then transistors and finally integrated circuits Key to computers - all you need are 1s and 0s Give a number to all letters and you can do anything (ASCII) 1/2/2019