STARTER – CRACK THE CODE 152120315135 9 3114 315142251820 21199147 29 11825.

Slides:



Advertisements
Similar presentations
Base 10 Denary Decimal
Advertisements

A-Level Computing#BristolMet Session Objectives#9 express numbers in binary, binary-coded decimal (BCD), octal and hexadecimal; describe and use two’s.
Candidates should be able to:
NUMBER SYSTEM. How to convert hexadecimal numbers to decimal numbers? 230 Working from right to left, MULTIPLY each position with 8 raised to the power.
Number System C.I.T. Ch2.5. Denary, Binary, Hexadecimal Number System Denary Number System Ten is it’s base. Ten distinct values :0,1,2,3,4,5,6,7,8,9.
DATA REPRESENTATION CONVERSION.
Information Processing
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.
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.
Revision Introductory Lesson
COMT 222 Tools for a Digital World. Digital? What makes information Digital? If it helps:  When is information not analog? Answer:  A finite number.
CONVERSION OF NUMBER SYSTEMS FAHEEM ANWAR MANAGER NETWORKS ACADEMY PTCL ACADEMY.
CPS120: Introduction to Computer Science Computer Math: Converting to Decimal.
Converting From decimal to Binary & Hexadecimal to Binary
Conversions Denary to Binary Method 1
Hexadecimal. Overview Hexadecimal (hex) ~ base 16 number system Use 0 through 9 and... A = 10 B = 11 C = 12 D = 13 E = 14 F = 15.
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.
Data Representation Hexadecimal  Although computers work in binary it is sometimes inconvenient for humans to read everything in Binary. For example in.
DECIMALBINARY a) b) c) d) e) f) Revision Exercise DECIMALBINARY a) b) c)
Springfield Technical Community College Center for Business and Technology.
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.
CEC 220 Digital Circuit Design Number Systems & Conversions Wednesday, Aug 26 CEC 220 Digital Circuit Design Slide 1 of 16.
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 PROGRAMMING I Objective 1.02 Understand Numbering Systems.
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.
The Hexadecimal System is base 16. It is a shorthand method for representing the 8-bit bytes that are stored in the computer system. This system was chosen.
Numbering Systems and Conversion Understand How Computing Devices Work 1.
Starter Using the mini whiteboards record your answers: 1) Name 2 different Character Sets 2) Convert the Hex number 9E into denary 3) Convert the binary.
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
Binary a. express numbers in binary, binary-coded decimal (BCD), octal and hexadecimal;
First Foray into Programming (the hard way). A reminder from last lesson: A machine code instruction has two parts:  Op-code  Operand An instruction.
Lesson 2 – Denary to Binary
OBJECTIVE AND OUTCOMES Objective: To be able to create images in binary format and understand the part metadata plays in recreating images. Outcomes:
© 2016 AQA. Created by Teachit for AQA Converting between number bases Lesson.
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.
Unit 2.6 Data Representation Lesson 1 ‒ Numbers
Binary, Denary, Hexadecimal Conversion Binary Addition
Unit 18: Computational Thinking
Lesson Objectives Aims
Binary numbers: Week 7 Lesson 1
Using the Windows Calculator for quick decimal to binary conversions
Lesson Objectives Understand the hexadecimal numbering system
CSE 102 Introduction to Computer Engineering
Denary to Binary Numbers & Binary to Denary
Lesson objectives Understand how computers represent and manipulate numbers [unsigned integers, signed integers (sign and magnitude, Two’s complement)
Lesson Objectives Aims You should be able to: Convert Denary to Binary
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.
Unit 2.6 Data Representation Lesson 1 ‒ Numbers
Hexadecimal Conversions
Follow-up question Factorize x2 + 2x – 15. Solution
Binary / Hex Binary and Hex The number systems of Computer Science.
Topic 3: Data Hexadecimal.
Lesson 6: End of Unit Assessment
There are 10 types of people of people in this world…
Data Binary Conversion.
Objective 1.02 Understand Numbering Systems
Binary  Name: Class: .
Lesson 4: Introduction to Hexadecimal
GCSE COMPUTER SCIENCE Topic 3 - Data 3.4 Hexadecimal Conversion.
Hexadecimal.
Remember the 10 types of people of people in this world…
Computer Science 1 Review and finish Number base conversion
Binary.
Section 6 Primitive Data Types
Presentation transcript:

STARTER – CRACK THE CODE

STARTER – CRACK THE CODE OUTCOME 9 I 3114 CAN CONVERT USING BINARY

OUTCOMES All students will be able to convert using 8 bit numbers Most students will be able to convert between binary, denary and binary to hexadecimal. Some students will be able to convert confidently between binary, denary and hexadecimal Objective: I can convert using binary, denary and hexadecimal numbers

HOW DO COMPUTERS TALK? Objective: I can convert using binary, denary and hexadecimal numbers

EXAMPLE = On 0 = Off Take the “On” numbers and add them together 8+1 = 9 So; 1001 in Binary is equal to the denary (integer) 9 Objective: I can convert using binary, denary and hexadecimal numbers

TASK ONE - A BinaryDenary ) So how ….. can I represent the number 256 in binary? Objective: I can convert using binary, denary and hexadecimal numbers

TASK ONE - A BinaryDenary ) So how ….. can I represent the number 16 in binary? Objective: I can convert using binary, denary and hexadecimal numbers

CAN WE MAKE NUMBERS INTO BINARY? So we know that is equal to 5 but how to we make numbers into binary code. Simple! Objective: I can convert using binary, denary and hexadecimal numbers

DENARY TO BINARY 99 = Why? = Objective: I can convert using binary, denary and hexadecimal numbers

TASK ONE – B – CONVERT THE DENARY BinaryDecimal ) So what is in denary form? Objective: I can convert using binary, denary and hexadecimal numbers

TASK ONE – B – CONVERT THE DENARY BinaryDecimal ) So what is in denary form? Objective: I can convert using binary, denary and hexadecimal numbers

PROGRESS CHECK Can we all confidently convert using 8 bit binary numbers? Objective: I can convert using binary, denary and hexadecimal numbers

THE SOLUTION TO BIGGER NUMBERS …. Sometimes binary numbers get really long – so we use Hexadecimal to shorten them – making them easier to store and remember. In this example, the relatively small number of 42,780 in binary is Objective: I can convert using binary, denary and hexadecimal numbers

CONVERSION TO HEXADECIMAL A 7 1 C 1)Split the binary into groups of 4 2)Using the table system convert to denary numbers 3)Use the Hex table to convert ABCDEF

TASK TWO A – BINARY TO HEX BinaryHex A 11B 12C 13D 14E 15F Convert the following from Binary to Hexadecimal: Convert: 8F to Decimal 6F8AB to Binary

TASK TWO A – BINARY TO HEX BinaryHex A 11B 12C 13D 14E 15F Convert the following from Binary to Hexadecimal: FAEE E2E2D D240E EEE Convert: 8F to Decimal 143 6F8AB to Binary

PLENARY Using what you have learnt this lesson answer the following questions; 1.Convert the denary number 110 to binary. 2.Convert the binary for 110 to Hexadecimal. 3.Convert the Hexadecimal E2 to binary 4.Convert the binary for E2 to denary Objective: I can convert using binary, denary and hexadecimal numbers

Objective: I can convert using binary, denary and hexadecimal numbers