Binary Aim: Explain binary and binary units Objective 1: Convert positive denary whole numbers (0-255) into 8-bit binary numbers and vice versa Objective.

Slides:



Advertisements
Similar presentations
Binary and Denary Numbers. Time remaining: Today’s date : all of the things that this COULD mean: even if you think that what you are thinking is daft.
Advertisements

Base 10 Denary Decimal
Candidates should be able to:
Teaching Computing at KS3 Session 2 Sue Sentance and Sophie Baker
Computer Systems 1 Fundamentals of Computing
© 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.
Communications Technology 2104 Mercedes Lahey. Bit 1. bit=From a shortening of the words “binary digit” 2. the basic unit of information for computers.
Computer Storage & Representing Numbers CE 311 K - Introduction to Computer Methods Daene C. McKinney.
Memory Terminology & Data Representation CSCI 1060 Fall 2006.
The Hexadecimal Number System and Memory Addressing ISAT 121.
Computer Systems Nat 4/5 Computing Science Data Representation Lesson 2: Floating Point Representation.
1 Press Ctrl-A ©G Dear 2010 – Not to be sold/Free to use Converting Bits and Bytes Stage 6 - Year 11 Applied Mathematic (Preliminary General 1)
CS 104 Introduction to Computer Science and Graphics Problems Data Representation(1) Number Systems 09/12 ~ 09/16 /2008 Yang Song (Prepared by Yang Song.
Do it now activity Can you work out what the missing symbols are and work out the order they should be in if the table shows smallest to largest KB kilobyte.
Working with 8-bit bytes and hexadecimal
Networking for Home and Small Businesses –.  Explain the binary representation of data.
GCSE Computing: A451 Computer Systems & Programming Numbers Representation of Data in Computer Systems.
Candidates should be able to:
A)Convert positive denary whole numbers (0-255) into 8-bit binary numbers and vice versa b)Add two 8-bit binary integers and explain overflow errors which.
Computer Math CPS120: Binary Representations. Binary computers have storage units called binary digits or bits: Low Voltage = 0 High Voltage = 1 all bits.
2.1.4 Data Representation Units.
* Numeral Systems: A writing method for expressing numbers is called a “Numeral System". In the most common numeral system, we write numbers with combinations.
By Dzuryat Nugroho.  Bit ◦ The smallest size of data in computer 1 bit = 0 or 1  Character (a,b,c,d……z,1,2,3,&,%,?,/….) ◦ 1 character = 8 bit  So,…if.
Reasons to  Binary With Mrs
Units Representation of Data in Computer Systems.
BINARY Toby Wilson. LEARNING OBJECTIVES  Be able to convert binary to denary  Be able to convert denary into binary  Be able to explain how computers.
Binary Decimal Hexadecimal
Lesson Aim (Data representation) To be able to: Convert B/D & D/B Convert D/H & H/D Convert H/B & B/H Perform simple binary arithmetic Represent a number.
Introduction to Number Representation A451 GCSE Computing.
Binary a. express numbers in binary, binary-coded decimal (BCD), octal and hexadecimal;
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.
CC111 Lec#2 The System Unit The System Unit: Processing and Memory Lecture 2 Binary System.
Numerical Representation Intro to Computer Science CS1510 Dr. Sarah Diesburg 1.
© OCR 2016 Unit 2.6 Data Representation Lesson 1 ‒ Numbers.
Unit 2.6 Data Representation Lesson 1 ‒ Numbers
Understanding binary Understanding Computers.
Computer basics.
© 2003, Cisco Systems, Inc. All rights reserved.
Binary, Denary, Hexadecimal Conversion Binary Addition
Lesson Objectives Aims You should be able to:
Data Representation – numbers Binary conversion Hexadecimal Negative numbers Binary addition Binary shifts.
Consider this number: , Ones (7 ones) Tens (no tens)
3.1 Denary, Binary and Hexadecimal Number Systems
Lesson Objectives Aims
Binary numbers: Week 7 Lesson 1
Numerical Representation
Memory Parts of a computer
Information Support and Services
What is Binary? Binary is a two-digit (Base-2) numerical system, which computers use to process and store data. The reason computers use the binary system.
Representation of data in computer systems
Unit 2.6 Data Representation Lesson 1 ‒ Numbers
Denary to Binary Numbers & Binary to Denary
…to GCSE Level with Python Sue Sentance
Lesson objectives Understand how computers represent and manipulate numbers [unsigned integers, signed integers (sign and magnitude, Two’s complement)
Data Representation Numbers
Representation of Data in Computer Systems
How do computers work? Storage.
Numerical Representation
Data Compression.
Data Representation – Numbers
(return of the…) Data blast
Numerical Representation
Why computers use binary
Binary  Name: Class: .
Binary System.
Binary It’s all 0’s and 1’s.
GCSE COMPUTER SCIENCE Topic 3 - Data 3.2 Signed Integers.
Computer Systems Nat 4/5 Computing Science Data Representation
Numerical Representation
Presentation transcript:

Binary Aim: Explain binary and binary units Objective 1: Convert positive denary whole numbers (0-255) into 8-bit binary numbers and vice versa Objective 2: Add two 8-bit binary integers and explain overflow errors which may occur Objective 3: Define the terms bit, nibble, byte, kilobyte, megabyte, gigabyte, terabyte

talk to the hands! Binary What is a denary number? 234 Why Base 10?

Binary What is a binary number? Binary is the universal language of computers 1s Why Base 2?

Binary Converting denary to binary 234 1s = = = =2

Binary Converting denary to binary - EXERCISE Convert the following to 8 bit binary:

Binary Converting denary to binary – Online Game

Binary Adding binary to binary Adding 8 bit binary numbers THREE RULES! = = = 0 (carry 1) DEC

Binary Adding binary to binary Adding 8 bit binary numbers OVERFLOW! ERROR OVERFLOW! ERROR DEC

Binary Adding binary to binary - EXERCISE = = = =

Binary Adding binary to binary - EXERCISE =

Binary Adding binary to binary - EXERCISE =

Binary Adding binary to binary - EXERCISE =

Binary Adding binary to binary - EXERCISE = OVERFLOW!

Binary Tools to Help

Binary Units What is a bit? A bit can either be a 1 or 0

Binary Units What is a byte? A byte is 8 bits

Binary Units A nibble is 4 bits A nibble is half a byte What is a nibble? This is a mouse This This is a mouse This is a mouse

Binary Units A kilobyte is 1024 bytes What is a Kilobyte (KB)? x 1024 Why not 1000?

Binary Units What is a Megabyte (MB)? A megabyte is 1024 kilobytes

Binary Units What is a Gigabyte (GB)? A gigabyte is 1024 megabytes

Binary Units What is a Terabyte (TB)? A terabyte is 1024 gigabytes

Binary Units What is a Petabyte (PB)? A petabyte is 1024 terabytes

Binary Units - EXERCISE Arrange the following in size order: BIT BYTE NIBBLE KILOBYTE MEGABYTE GIGABYTE TERABYTE PETABYTE

Binary Aim: Explain binary and binary units Objective 1: Convert positive denary whole numbers (0-255) into 8-bit binary numbers and vice versa Objective 2: Add two 8-bit binary integers and explain overflow errors which may occur Objective 3: Define the terms bit, nibble, byte, kilobyte, megabyte, gigabyte, terabyte

Binary and Hexadecimal Web Resources LESSON FILES CISCO BINARY GAME BINARY UNITS ict.com/gcse_new/computer%20systems/storage_units/miniweb/index.htm

talk to the feet! Binary and Hexadecimal What is a hexadecimal number? Why Base 16?

Binary and Hexadecimal How are hexadecimal numbers used? MAC Address: B-6D-62 MAC Address (in binary):

Binary and Hexadecimal How are hexadecimal numbers used? WHITE #ffffffR255 G255 B BLACK #000000R000 G000 B

Binary and Hexadecimal Converting denary to hexadecimal 74 / 16 = 4 (4 x 16 = 64) = = A 4A

Binary and Hexadecimal Converting denary to hexadecimal 255 / 16 = 15 (15 x 16 = 240) = = F FF

Binary and Hexadecimal Converting denary to hexadecimal - EXERCISE Convert the following to hexadecimal: F FF B 7F