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.

Slides:



Advertisements
Similar presentations
Data Representation. Units & Prefixes Review kilo, mega, and giga are different in binary! bit (b) – binary digit Byte (B) – 8 binary digits KiloByte.
Advertisements

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.
Information Representation
Base 10 Denary Decimal
Candidates should be able to:
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
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 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 1 Fundamentals of Computing
Revision tip: Focus on the things you find difficult first.
Hexadecimal and ASCII Lesson Objective: Understand the purpose of ASCII and how to use it. Lesson Outcome: Convert between Hexadecimal and ASCII Convert.
© 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.
Digital Colour Theory. What is colour theory? It is the theory behind colour mixing and colour combination.
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.
Number System. Number Systems Important Number systems – Decimal – Binary – Hexadecimal.
Conversions Denary to Binary Method 1
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
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.
Networking for Home and Small Businesses –.  Explain the binary representation of data.
Computer Programming 12 Mr. Jean February 5 th, 2014.
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.
Units Representation of Data in Computer Systems.
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.
A+ Computer Repair Lesson 3: Number System. Objectives Define binary, decimal, octal, and hexadecimal numbering systems. Define binary, decimal, octal,
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
Understanding Computers
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.
OBJECTIVE AND OUTCOMES Objective: To be able to create images in binary format and understand the part metadata plays in recreating images. Outcomes:
WHY HEXADECIMAL?. Why bother with Hexadecimal? 1. Binary numbers are difficult for us to work with. 2. Hexadecimal can be used as “shorthand” for binary.
Understanding Binary Understanding Computers. Understanding Computers L3 – Understanding Binary Learning Objectives All will Understand why all data is.
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.
© OCR 2016 Unit 2.6 Data Representation Lesson 1 ‒ Numbers.
Unit 2.6 Data Representation Lesson 3 ‒ Images
Unit 2.6 Data Representation Lesson 1 ‒ Numbers
Understanding binary Understanding Computers.
Binary, Denary, Hexadecimal Conversion Binary Addition
Lesson Objectives Aims You should be able to:
Consider this number: , Ones (7 ones) Tens (no tens)
Lesson Objectives Aims
Binary numbers: Week 7 Lesson 1
Memory Parts of a computer
Binary 4 File Sizes.
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
Binary & Hexidecimal Numbers
Data Representation Numbers
Representation of Data in Computer Systems
Summer Term Year 10 Slides
1. Explain how ASCII is used to represent text in a computer system
Hexadecimal Conversions
Topic 3: Data Hexadecimal.
(return of the…) Data blast
Data Binary Conversion.
Bits and Bytes Key Revision Points.
Binary  Name: Class: .
Lesson 4: Introduction to Hexadecimal
GCSE COMPUTER SCIENCE Topic 3 - Data 3.4 Hexadecimal Conversion.
Hexadecimal.
Component 1 – 2A, B, C Binary Logic
WJEC GCSE Computer Science
Binary.
Presentation transcript:

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 use binary

WHAT IS BINARY?  A number system that uses two digits, 0 and 1  (Base 2 = 0 & 1)  (Base 10 = 0,1,2,3,4,5,6,7,8 & 9)

A BIT  A bit is a digit in a binary number  It can be either 1 or 0

BINARY NUMBERS 0001  The number above includes 4 bits  Each bit is worth a different value  They work from right to left  In the number, 0 = 8 0 = 4 0 = 2 1 = 1

BINARY TO DENARY CONVERSION  Denary is a regular number. Eg 8  To convert a binary number into denary, you add up the value of each bit and there you have your result  1011 =

QUESTION ANSWERS  1010 = 10  0011 = 3  1001 = 9  1111 = 15  = 18  = 187

DENARY TO BINARY CONVERSION  This is the opposite of binary to denary  This is where you are given a denary number and you need to convert it in to binary  Eg. 22  22 – 16 (10000) = 6 6 – 4 (10100) = 2 – 2 (10110) = 0  22 = 10110

QUESTION ANSWERS  13 – 8 = 5 – 4 = 1 – 1 = 0 (1101)  7 – 4 = 3 -2 = 1 – 1 = 0 (111)  29 – 16 = 13 – 8 = 5 – 4 = 1 -1 = 0 (11101)  42 – 32 = = 2 -2 = 0 (10101)  62 – 32 = 30 – 16 = 14 – 8 = 6 – 4 = 2 – 2 = 0 (111110)  200 – 128 = 72 – 64 = 8 – 8 = 0 ( )

DEFINITIONS  Bit – Binary Digit  Nibble – 4 Bit Binary Number  Byte – 8 Bit Binary Number  Kilobyte – 10 Bit Binary Number  Megabyte – 20 Bit Binary Number  Gigabyte – 30 Bit Binary Number  Terabyte – 40 Bit Binary Number

HOW IS BINARY USED?  Binary is used to represent all types of data in a computer  For example, Colours  Colours are made up of Red, Green and Blue  Each of these colours are a byte  The combination of these three bytes will give you a huge range of colours to choose from

RESEARCH TASK  I need to find out how binary represents the following three areas:  Images  Sound  Text

HOW BINARY IS USED TO REPRESENT IMAGES  The pictures are made up of pixels, each with an 8-bit number representing a certain shade (Out of 256)

HEXADECIMAL DenaryBinaryHexDenaryBinaryHex A B C D E F C = F5 =

HEXADECIMAL QUESTIONS DenBinHex

HOW TO ADD IT UP 70(16) = = (10) = = 46 To Binary: ( ) Then add all together To Hexidecimal: ( )Every 4 bits = 1 Digit EG: = = 15