Learn what binary and denary mean.

Slides:



Advertisements
Similar presentations
Base 10 Denary Decimal
Advertisements

Mathematics with Binary. Question  Below is a binary string  Which is the least significant bit (LSB)?  Which is the most significant bit (MSB)? 0.
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.
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.
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.
Computer Systems Nat 4/5 Computing Science Lesson 1: Binary.
Numbering Systems Decimal (Denary) base 10. Clumsy when dealing with computers. Other systems –Binary –Octal –Hexadecimal Convenient when dealing with.
Data and Program Representation
A-Level Computing Data representation. Objectives Know how data can be represented in a computer system Understand the need for various forms of representation.
Data Representation S2. This unit covers how the computer represents- Numbers Text Graphics Control.
Chapter 2 Computer Hardware
Q.
Conversions Denary to Binary Method 1
Hexadecimal Data Representation. Objectives  Know how the Hexadecimal counting system works  Be able to convert between denary, binary & hexadecimal.
Number Bases and Representation. Denary Number System (Base 10) Our number system uses 10 digits (0-9) As you move from right to left each number is worth.
Teaching Computing to GCSE Level with Python Session 3.
Binary Bracelets. Objectives Encode letters into binary Decode binary back to letters Relate the idea of storing initials on a bracelet to the idea of.
Computer Systems Nat 4/5 Computing Science Lesson 1: Binary.
2.1.4 Data Representation Units.
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.
Computer Science 4 On and OFF. Homework What have we created.
DATA REPRESENTATION IMAGES GCSE Computing. Learning Objective ■ To understand how an image is represented in Binary ■ To be able to convert a Binary code.
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.
Hexadecimal (base 16) BY MAT D. What is hexadecimal  Hexadecimal is a number system like binary or denary that has 16 characters, the numbers 0-9 and.
OBJECTIVES 1. Be able to recognise binary code 2. Be able to convert denary numbers into binary numbers 3. Be able to convert binary into denary numbers.
Activity 1 Research / Revise how RAM stores DATA 5 minutes 1 0.
Numbering Systems and Conversion Understand How Computing Devices Work 1.
STARTER – CRACK THE CODE
Conversions 1)Binary to Denary Method 1 Work out the position values of the binary bits and add those values together So above would be
CC111 Lec#2 The System Unit The System Unit: Processing and Memory Lecture 2 Binary System.
OBJECTIVE AND OUTCOMES Objective: To be able to create images in binary format and understand the part metadata plays in recreating images. Outcomes:
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 Lesson 2 Binary KS3 COMPUTING KS3 Computing
How do the parts of a computer communicate?
Binary and Logic Computers use electrical signals that are on or off, so they have to see everything as a series of binary numbers. This data is represented.
Lesson Objectives Aims You should be able to:
CMSC201 Computer Science I for Majors Lecture 22 – Binary (and More)
Common Problem… Not for the beginning of the year.
Minecraft Logic Gates!.
physics-chemistry-interactive-flash-animation
Digital Electronics INTRODUCTION ANALOG VS DIGITAL NUMBER SYSTEMS.
Binary numbers: Week 7 Lesson 1
BINARY CODE.
Representation of data in computer systems
Unit 2.6 Data Representation Lesson 1 ‒ Numbers
Binary Arithmetic.
Saturday, 10 November 2018 Binary
Topic 3: Data Binary Arithmetic.
Representation of Data in Computer Systems
BINARY SYSTEM.
Teaching Computing to GCSE
Teaching KS3 Computing Session 2 Introduction Theory: Binary numbers
Lesson Objectives To understand how to add 4 and 8 bit binary numbers together To understand what is meant by the term “Overflow” ALL students will add.
Teaching Computing to GCSE
Everything that goes on under the hood of a computer is done in binary -- the language of 0s and 1s. If we have only two numbers, it's very easy to represent.
(return of the…) Data blast
Data Binary Conversion.
Data Representation and Organization
Binary  Name: Class: .
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.
GCSE COMPUTER SCIENCE Topic 3 - Data 3.4 Hexadecimal Conversion.
Hexadecimal.
LO1 – Understand Computer Hardware
Binary It’s all 0’s and 1’s.
GCSE COMPUTER SCIENCE Topic 3 - Data 3.1 Binary.
Our Number System.
Binary.
1 1. Binary Basics Year 8 Unit 1 Bitmap Graphics.
Section 6 Primitive Data Types
Presentation transcript:

Learn what binary and denary mean. Be able to convert numbers between binary and denary. Understand the how 4-bit binary works.

How do computers see the world?

A computer doesn’t think like a person can - it needs it’s own language! As a computer is a mathematical machine it uses a number system… First we need to understand what denary means. Denary means TEN. Humans have TEN fingers… the denary number system uses TEN numbers 0, 1, 2, 3, 4, 5, 6, 7, 8, 9…. All other numbers are made up of these numbers.

In denary 9 lots of 10 is 90... so 8 lots of 10 plus 6 is 86... and 7 lots of 100 plus 2 lots of 10 plu 5 is 725... What would the following numbers be? 2 lots of 10 + 6____ 6 lots of 100 + 4 lots of 10_____ 3 lots of ten + 9____ 9 lots of 100 + 6 lots of 10 + 7____ 4 lots of 100 + 5 lots of 10 + 2____ 6 lots of 100 + 7 lots of 10 + 9____ 8 lots of 1000 + 7 lots of 100 + 2 lots of 10 + 6______

A computer on the other hand... Is a machine so it uses only TWO things - electrical signals that are either ON or OFF. How can we convert this to a language then? Simple- we use 1 for on and 0 for off! This is how your computer stores ALL data - images, videos, games, words and numbers! All stored as millions of 1’s and 0’s!! This is called BINARY because binary means TWO.

Each of these 1’s and 0’s is called a BIT Each of these 1’s and 0’s is called a BIT. Heard the phrase 32-bit or 64-bit? But we are going to start off with a simple 4-bit system to convert denary numbers into binary ones! BINARY is what we call BASE 2: It’s based on 2 numbers… so what would we call denary?________ Our binary 4 bits are all multiplied by 2. This means we start with ONE (x2) then TWO (x2) then FOUR (x2) then 8. What would the next two numbers be if we were using a 6-bit system?________

The numbers in the white boxes tell us which numbers to use (think of 1 which is ON as YES and 0 which is OFF as NO!) These numbers are our “placeholders”.They are values we can add together! 8 4 2 1 So this number is ONE because it is one lot of 1. So this number is 2 because it is one lot of 2. However this number is 3 because one lot of 1 + one lot of 2 =3

Quick Quiz: Name three different types of data a computer stores: __________ b. __________ c. _________ Binary is a way the computer reads but not stores data. TRUE / FALSE Binary use electrical signals. TRUE / FALSE Binary uses 1’s and 0’s to represent data? TRUE / FALSE What is 12 in binary? _ _ _ _ What is 4 in binary? _ _ _ _ What is 3 in binary? _ _ _ _ Each 1 and 0 in binary is called a bit? TRUE / FALSE