The language of computers Before we start you need to know an important fact. Anything to the power 0 is worth 1. You will need to remember this for later!

Slides:



Advertisements
Similar presentations
‘I didn’t learn to do it that way!’
Advertisements

BITS, BYTES, AND THE BINARY SYSTEM HOW PROGRAMS CREATE IMAGES ON YOUR PC.
INTEGERS.FDECIMALS.F DIGITS WHICH ARE RELEVANT IN AN INTEGER OR A DECIMAL.
Objective: To convert numbers into standard index form
A-Level Computing#BristolMet Session Objectives#8 express numbers in binary, octal and hexadecimal explain the use of code to represent a character set.
Number Systems Benchmark Companies Inc PO Box Aurora CO
Standard Index form OCR Module 8.
Session 5 of 10 Review + Multiple Sprites
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.
Computer Number Systems This presentation will show conversions between binary, decimal, and hexadecimal numbers.
An introduction to Binary. Binary is the language used by computers. It uses 0 and 1 to represent different numbers.
Subtraction Using Pencil & Paper Methods
Positional Number Systems
Today we will multiply using decimals.
Objective: To convert numbers into standard index form
IT-101 Section 001 Lecture #3 Introduction to Information Technology.
Data Representation S2. This unit covers how the computer represents- Numbers Text Graphics Control.
Decimal to Fraction.
Starter 1.How would you record the following measurements? How many sig figs? a.b. 2.Count the sig figs in the following measured values: a
Computing Theory – F453 Number Systems. Data in a computer needs to be represented in a format the computer understands. This does not necessarily mean.
Multiply Decimals 1.Multiply as with whole numbers. 2.Count the total numbers in decimal place value for both factors 3.Place as many numbers of your FINAL.
NUMBER SYSTEM Decimal System Binary System. We use two digits in this system (0,1) just like the existing system of computers.. And write the number in.
Converting From decimal to Binary & Hexadecimal to Binary
Data Representation Conversion 24/04/2017.
Hexadecimal Data Representation. Objectives  Know how the Hexadecimal counting system works  Be able to convert between denary, binary & hexadecimal.
Binary Numbers So what are they and why are they important?
THE BINARY NUMBER SYSTEM “There are only 10 types of people in this world: Those who understand BINARY and those who do not.”
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.
1 1 7-Dec-15 Binary Converting to and from decimal.
Scientific Notation How to cope with really big and really small numbers…
1 4. Computer Maths and Logic 4.1 Number Systems.
UNIT 1: TOOLS OF THE TRADE Math Skills Math Skills.
SIGNIFICANT FIGURES AND DECIMAL PLACES
Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall. 5.2 Adding and Subtracting Decimals.
Introduction to Computer Programming - Project 2 Intro to Digital Technology.
Binary Arithmetic CPSC 101: Chp 2 John Lamertina.
Arithmetic in Binary. Addition A “Rule of Addition” is a statement of the form: = 8 How many such rules are there in Decimal?
1 Web Search What does the term “binary” mean in a general sense? What does the prefix “bi” tell us? 2 Web Search What does the term “binary”
Approximate Can I do it in my head using a mental strategy? Calculate Could I use some jottings to help me? Check it ! Should I use a written method to.
Adding and Subtracting Decimals Section 5.2. Adding or Subtracting Decimals Step 1. Write the decimals so that the decimal points line up vertically.
CMSC 1041 Binary / Hex Binary and Hex The number systems of Computer Science.
Numbering Systems and Conversion Understand How Computing Devices Work 1.
Multiplying Decimals 12/7/2015. To Multiply: You do not align the decimals. Instead, place the number with more digits on top. Multiply Count the number.
Converting to Percents. Decimals to Percents Decimals to Percents When converting decimals to percents, first you need to multiply the decimal with one.
Binary Numbers Practice.
© 2016 AQA. Created by Teachit for AQA Number bases and Units of information Lesson.
Binary Numbers Press any key to begin.. In order to understand the binary numbering system lets first look at our decimal system. The decimal numbering.
Let’s COUNT In tenths
Number Systems Decimal Can you write 12,045 in expanded form? Base? Allowable digits for each place?
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.
© Hamilton Trust Stepping Up Term 3 Week 7 Day 2
Lesson 3: Comparing and Rounding Decimals p
Unit 18: Computational Thinking
Adding, Subtracting, and Multiplying Decimals 3-1/3-2
Using the Windows Calculator for quick decimal to binary conversions
COUNTING IN BINARY Binary weightings 0 x x x x 8
Rounding Learning Objectives: Able to round to the nearest 10, 100
Multiplication Pages
Representing Data How does a computer represent data?
Binary, Octal and Hex Numbers Copyright Thaddeus Konar
Binary Numbers Press any key to begin..
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.
Starter Using the fingers on only one hand, what is the highest number you can count to? Rules: You must start at 1 You must count sequentially (i.e.
COUNTING IN BINARY Binary weightings 0 x x x x 8
Starter Questions 3cm.
Binary Search Counting
Number Systems.
Multiplying Decimals.
Counter Fundamentals Presented by :
Presentation transcript:

The language of computers Before we start you need to know an important fact. Anything to the power 0 is worth 1. You will need to remember this for later!

A quick skills check before we start. What is the value of each of these boxes? = 8= 9= 1000 = 9 = 625= 1 Did you spot it. Remember anything to the power 0 is 1. = 27 = 1

What do the following words have in common? Binary Bimodal Biped Bilateral Bicycle Bipolar These words all begin with bi and mean two

In binary there are only two digits. Which two would you choose? In binary code we only have the digits 0 and 1. Can you see why these might be the most important digits to use? To create larger values you need to combine 0s and 1s. How can we write 2? To help us, lets look at how we generate large numbers in decimal. and

Using Columns ° is 0 is 1 is 2 is 3 is is is 6 and so on..... To count up in binary we can start with, 0, 1 and then what? This is (1 x 2 1 ) + (0 x 2°) Remember: 2° = 1 so the first column acknowledges whether there are any 1s. This is (1 x 2 1 ) + (1 x 2°) This is (1 x 2 2 ) + (0 x 2 1 ) +(0 x 2°) This is (1 x 2 2 ) + (0 x 2 1 ) +(1 x 2°) This is (1 x 2 2 ) + (1 x 2 1 ) +(0 x 2°) It’s all about the powers of 2!

Look at this number in binary: x x x x x x = 39

Calculate the value of this binary number: x x x x x x = 54

Calculate the value of this binary number: x x x x x x = 89 1 x

Calculate the value of this binary number: x x x x x x = 59

Convert the following binary codes into decimal numbers: = 90= 108 = 85= 56 = 107= 65

Let’s try it the other way round. How would you write the following in binary code?