Springfield Technical Community College Center for Business and Technology.

Slides:



Advertisements
Similar presentations
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.
Advertisements

Understanding Binary Basics
DATA REPRESENTATION CONVERSION.
How Computers Represent Numbers Friday, Week 5. Binary Code A series of 1’s and 0’s Place value is in powers of 2.
How Computers Represent Numbers Friday, Week 5. Binary Code A series of 1’s and 0’s Place value is in powers of 2.
Binary and Hexadecimal Numbers
Computer Number Systems This presentation will show conversions between binary, decimal, and hexadecimal numbers.
Number Systems and Arithmetic
© Copyright 2000 Indiana University Board of Trustees Proficiency Quiz Study Guide Note: The following slides are provided courtesy of Dr. Bob Orr (Computer.
+ CS 325: CS Hardware and Software Organization and Architecture Integers and Arithmetic.
Hexadecimal Dk Izzati Pg Haji Ahmad.
Hexadecimal and ASCII Lesson Objective: Understand the purpose of ASCII and how to use it. Lesson Outcome: Convert between Hexadecimal and ASCII Convert.
Number Systems.
COMT 222 Tools for a Digital World. Digital? What makes information Digital? If it helps:  When is information not analog? Answer:  A finite number.
Binary Numbers and ASCII and EDCDIC Mrs. Cueni. Data Representation  Human speech is analog because it uses continuous signals (waves) that vary in strength.
EX_01.1/46 Numeric Systems. EX_01.2/46 Overview Numeric systems – general, Binary numbers, Octal numbers, Hexadecimal system, Data units, ASCII code,
Title NUMERIC SYSTEMS USED IN NETWORKING NUMERIC SYSTEMS USED IN NETWORKING.
Number Systems What is the Standard Base we
Lecture Binary and Hexadecimal Numbers. How Machines Think Computers handle two types of information: –Instructions –Data The "words" of a machine language.
The Hexadecimal Number System and Memory Addressing ISAT 121.
CMSC 104, Lecture 051 Binary / Hex Binary and Hex The number systems of Computer Science.
Converting From decimal to Binary & Hexadecimal to Binary
Hexadecimal Data Representation. Objectives  Know how the Hexadecimal counting system works  Be able to convert between denary, binary & hexadecimal.
THE BINARY NUMBER SYSTEM “There are only 10 types of people in this world: Those who understand BINARY and those who do not.”
DECIMALBINARY a) b) c) d) e) f) Revision Exercise DECIMALBINARY a) b) c)
Binary01.ppt Decimal Decimal: Base 10 means 10 Unique numerical digits ,00010,000 Weight Positions 3,
Chapter 3 The Power of HEX Finding Slivers of Data.
Agenda Character representation Numerical Conversions ASCII EBCDIC
Topic 14.1 Extended Hexadecimal  Decimal is base 10 and uses 10 digits (0,1,2,3,4,5,6,7,8,9).  Binary is base 2 and uses 2 digits (0,1).  Computers.
Number Systems. Topics  The Decimal Number System  The Binary Number System  Converting from Binary to Decimal  Converting from Decimal to Binary.
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.
Number Systems and Binary Arithmetic Quantitative Analysis II Professor Bob Orr.
Number Systems. ASCII – American Standard Code for Information Interchange – Standard encoding scheme used to represent characters in binary format on.
STARTER – CRACK THE CODE
Base 16 (hexadecimal) Uses the decimal digits and the first letters of the alphabet to encode 4 binary bits (16=2 4 ) abcdef or ABCDEF.
Some basic concepts underlying computer archi­tecture
Digital Design Chapter One Digital Systems and Binary Numbers
Different Numeral Systems
Binary Numbers and ASCII and EDCDIC
Unit 18: Computational Thinking
Integer Real Numbers Character Boolean Memory Address CPU Data Types
BINARY CODE.
CHAPTER 1 : INTRODUCTION
Information Support and Services
EPSII 59:006 Spring 2004.
CSE 102 Introduction to Computer Engineering
2.0 COMPUTER SYSTEM 2.2 Number System and Representation
Number System conversions
Coding Schemes and Number Systems
Number Systems and Binary Arithmetic
Unit 2.6 Data Representation Lesson 1 ‒ Numbers
Binary and Hexadecimal Numbers
Hexadecimal Conversions
Binary / Hex Binary and Hex The number systems of Computer Science.
Binary Lesson 8a IPv6 Addresses: Hexadecimal
COMS 161 Introduction to Computing
Binary Lesson 8 IPv6 Addresses: Hexadecimal
Chapter 2 Number Systems.
Binary Addition (1 of 2) Two 1-bit values A B A + B 1
Numeral systems (radix)
Chapter 2 Number Systems.
Chapter 2 Number Systems.
Electronic Memory.
Chapter 2 Number System.
Chapter 3 - Binary Numbering System
Chapter 2 Number Systems.
Section 6 Primitive Data Types
Presentation transcript:

Springfield Technical Community College Center for Business and Technology

Decimal vs. Binary Decimal counting system is based on numbers 0 – 9 This is the numbering system we use everyday. This system is called a base 10 counting system. Since 0 – 9 totals 10 numbers The Binary number system is based on 2 numbers 0 and 1 Computers use this system because they can only understand on (1) and off (0) states. This system is called the Base 2 system as only 2 numbers are used

Binary Numbers Within a computer system binary code is used to represent letters and symbols. The ASCII Coding Scheme is a good example of this code. The computer uses an 8 bit code to represent the characters. Base 2 system = 2^8 This gives you 256 possible chars, 0 – 255 The ASCII code for a capital “J” is 74 Since computers only understand ones and zeros the 74 must be converted into Binary. How do we do this? It’s not hard!

Conversion Time Lets do a Decimal to Binary conversion using this chart. We need to place a 1 over each place holder that will equal 74. The rest will be zeros So = 74, our Binary code is And if we wanted to do a Binary to Decimal conversion all we need to do is place the known Binary code over the chart and add the ones.

Hexadecimal, Hexa What? Hexadecimal is a base 16 numbering system used in the new IPv6 addressing scheme and is easier to understand than Binary. Base 16 means it’s an alpha numeric system; A B C D E F Base 16 = 0 – 9, then letters A – F = 10 – total numbers

Hexadecimal Conversion Let’s work with the same numbers Convert a Decimal 74 into Hex. The Binary 8 bit chart is now divided into two 4 bit charts called Nibbles Now add the ones on each side A Now use the code – ABCDEF 74 = = 0x4A The 0x just denotes the code is Hex.

Sites to Visit… s.php s.php