GCSE COMPUTER SCIENCE Topic 3 - Data 3.4 Hexadecimal Conversion.

Slides:



Advertisements
Similar presentations
Candidates should be able to:
Advertisements

DATA REPRESENTATION CONVERSION.
Information Processing
Chapter 4.2 Binary numbers: Arithmetic
CISCO NETWORKING ACADEMY Chabot College ELEC 74A Hexadecimal Introduction.
Data Storage Introduction to computer, 2nd semester, 2010/2011 Mr.Nael Aburas Faculty of Information Technology Islamic.
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.
Number Systems.
A-Level Computing Data representation. Objectives Know how data can be represented in a computer system Understand the need for various forms of representation.
Number Systems Ron Christensen CIS 121.
Chapter 4: Representation of data in computer systems: Number OCR Computing for GCSE © Hodder Education 2011.
Positional Notation 642 in base 10 positional notation is:
Converting From decimal to Binary & Hexadecimal to Binary
Conversions Denary to Binary Method 1
AP Computer Science A – Healdsburg High School 1 Unit 1 - Binary Numbers - Hexadecimal Numbers.
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.
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.
DECIMALBINARY a) b) c) d) e) f) Revision Exercise DECIMALBINARY a) b) c)
Candidates should be able to:
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.
Introduction to Number Representation A451 GCSE Computing.
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 Number System Representation of Data in Computer Systems.
Cis303a_chapt03_exam1_answer.ppt CIS303A: System Architecture Exam 1: Chapter 3 Answer List the characters (digits) for the following bases. 1) Decimal:
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.
CMSC 1041 Binary / Hex Binary and Hex The number systems of Computer Science.
STARTER – CRACK THE CODE
Chapter 5 NUMBER REPRESENTATION AND ARITHMETIC CIRCUITS.
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
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.
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.
Lecturer: Santokh Singh
Number Systems and Codes
Binary, Denary, Hexadecimal Conversion Binary Addition
Binary and Hexadecimal
Different Numeral Systems
Lesson 1-15 AP Computer Science Principles
Numeric Data Representation
By: Jonathan O. Cabriana
Using the Windows Calculator for quick decimal to binary conversions
Number Systems.
Lesson Objectives Understand the hexadecimal numbering system
2.0 COMPUTER SYSTEM 2.2 Number System and Representation
Data Storage Introduction to computer, 2nd semester, 2010/2011
Number Systems and Binary Arithmetic
Unit 2.6 Data Representation Lesson 1 ‒ Numbers
Hexadecimal Conversions
Binary / Hex Binary and Hex The number systems of Computer Science.
Binary Lesson 3 Hexadecimal
Data Hexadecimal.
Binary Lesson 8a IPv6 Addresses: Hexadecimal
Lesson 6: End of Unit Assessment
There are 10 types of people of people in this world…
Binary Lesson 3 Hexadecimal
Binary Lesson 3 Hexadecimal
Binary Lesson 8 IPv6 Addresses: Hexadecimal
Binary Lesson 3 Hexadecimal
Binary  Name: Class: .
Number Systems Rayat Shikshan Sanstha’s
Binary Lesson 4 Hexadecimal and Binary Practice
Lesson 4: Introduction to Hexadecimal
Hexadecimal.
Number Systems Rayat Shikshan Sanstha’s
Section 6 Primitive Data Types
Presentation transcript:

GCSE COMPUTER SCIENCE Topic 3 - Data 3.4 Hexadecimal Conversion

There are 16 different values available in hex: Hexadecimal Programmers use hexadecimal numbers as shorthand for binary to save time. There are 16 different values available in hex: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 2 3 4 5 6 7 8 9 A B C D E F Letters are used for the values 10-15 to ensure that only single digits are used.

Activity Explain why hexadecimal notation is used. Question Answer Explain why hexadecimal notation is used. It is quicker to use for programmers as there are less characters. Which characters are used to represent numbers in hexadecimal? Numbers 0-9 are represented by numbers. The letters A-F are used to represent the numbers 10-15.

In this example we will convert DB to binary Hexadecimal to Binary Converting between hexadecimal and binary is simple. Take each character and convert it into the equivalent 4-bit binary number In this example we will convert DB to binary Hex D B Denary 13 11 Binary 1

Convert these hexadecimal number to binary. Activity Convert these hexadecimal number to binary. 4 B 3 7 E 11 14 0100 1011 0011 0111 1110 1 2 A D 10 13 0001 0010 1010 1101 1 2 3 4 5 6 7 8 9 A B C D E F

In this example we will convert 11110011 into hexadecimal. Binary to Hexadecimal You convert between binary and hexadecimal by doing the reverse. You just take each group of four binary digits, starting from the right and convert it into the equivalent hexadecimal number. In this example we will convert 11110011 into hexadecimal. Binary 1 Denary 15 3 Hex F

Convert these numbers to hexadecimal Activity Convert these numbers to hexadecimal 1101 1111 1001 0001 0011 1010 13 15 9 1 3 10 D F A 1110 1100 1011 0101 0111 14 12 11 5 7 E C B 1 2 3 4 5 6 7 8 9 A B C D E F