ASCII & Gray Codes.

Slides:



Advertisements
Similar presentations
Conversion and Coding (12)10.
Advertisements

NUMBERS DESCRIBE THE SYSTEM
Company LOGO Edit your slogan here DKT 122/3 DIGITAL SYSTEM 1 WEEK #3 NUMBER SYSTEMS, OPERATION & CODES (PART 2)
Gray Code Converters Discussion D9.1 Example 16.
Codes and Code Converters
Overview Digital Systems and Computer Systems Number Systems [binary, octal and hexadecimal] Arithmetic Operations Base Conversion Decimal Codes [BCD (binary.
CSCE 211: Digital Logic Design Chin-Tser Huang University of South Carolina.
Number System and Codes
1 times table 2 times table 3 times table 4 times table 5 times table
Gray Code Benchmark Companies Inc PO Box Aurora CO
FIGURES FOR CHAPTER 1 INTRODUCTION NUMBER SYSTEMS AND CONVERSION
1.6 Signed Binary Numbers.
To make the number 5, place a 1 under the numbers that you need and a 0 under the numbers that you don’t… Make a table like this
Binary Codes Computers and other digital systems "work" with binary numbers. I/P & O/P is usually done using decimal numbers, alphabetics, special symbols.
Synchronous Counters ET 5. Thinking back In the past we have seen that asynchronous counters can be used to count binary in the order that we have filled.
Binary Arithmetic & Data representation
The Digital Codes.
Morgan Kaufmann Publishers
COMPSCI 210 Semester Tutorial 1
1 Chapter 2 Number Systems, Operations, and Codes.
Converting From decimal to Binary & Hexadecimal to Binary
Arithmetic Sequences Standard: M8A3 e. Use tables to describe sequences recursively and with a formula in closed form.
Section 12-1 Sequence and Series
التحليل والتصميم المنطقي DIGITAL DESIGN Instructor : Khalil Alsulbi Mobile : Room : 217.
THE BINARY NUMBER SYSTEM “There are only 10 types of people in this world: Those who understand BINARY and those who do not.”
The character data type char. Character type char is used to represent alpha-numerical information (characters) inside the computer uses 2 bytes of memory.
CSCE 211: Digital Logic Design Chin-Tser Huang University of South Carolina.
Codes Octal Power Hexadecimal ASCII BCD Code
CEC 220 Digital Circuit Design Binary Codes
Agenda Character representation Numerical Conversions ASCII EBCDIC
$100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300.
NUMBER SYSTEMS AND CODES. CS Digital LogicNumber Systems and Codes2 Outline Number systems –Number notations –Arithmetic –Base conversions –Signed.
Module –I Codes: Weighted and non-weighted codes
CEC 220 Digital Circuit Design Binary Codes Mon, Aug 31 CEC 220 Digital Circuit Design Slide 1 of 14.
Tables Learning Support
Objective: Learn to describe the relationships and extend the terms in arithmetic sequence.
Exercise 1.2 (Chapter 1) Prepared by Dr. Lamiaa Elshenawy
Lecture 1.2 (Chapter 1) Prepared by Dr. Lamiaa Elshenawy
Exercises 1.2 (Chapter 1) Prepared by Dr. Lamiaa Elshenawy
Dr. Nermin Hamza. Agenda Signed Numbers Properties of Switching Algebra.
Understanding Computers
Binary Numbers Practice.
Advanced Binary b. describe and use two’s complement and sign and magnitude to represent negative integers; c. perform integer binary arithmetic, that.
Unit I From Fundamentals of Logic Design by Roth and Kinney.
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.
Computer Science 210 Computer Organization
Understanding binary Understanding Computers.
From the ASCII table… Symbol Decimal Binary A B 66
Unit 18: Computational Thinking
Data Transfer ASCII FILES.
Using the Windows Calculator for quick decimal to binary conversions
Binary numbers pt. 2.
# of Bits is powers of 2 - not conversions
Data Encoding Characters.
Times Tables.
Computers & Programming Languages
BCD = Binary Coded Decimal
Computer Science 210 Computer Organization
From the ASCII table… Symbol Decimal Binary A B 66
Lecture 9: Radix-64 Tutorial
Notes Over 11.5 Recursive Rules
Binary Numbers The Binary number system is derived from Base 2. In base 2 there are only 2 numerical options 0 and 1. The computer sees these as Off.
Binary  Name: Class: .
Table 1.1 Powers of Two.
Learning Intention I will learn how computers store text.
Understanding the Number Decimal to Binary Conversion
3 times tables.
6 times tables.
Presentation transcript:

ASCII & Gray Codes

ASCII Table

Gray Codes Not an arithmetic code Exhibits only a single change from one code word to the next in sequence Need to know : Conversion binary  gray code Conversion gray code  binary

Binary  Gray Codes 1 0 1 1 0 1 1 1 0 1 Gray Codes + + + + Convert binary number 10110 to gray code. 1 0 1 1 0 1 1 1 0 1 Gray Codes + + + +

Binary  Gray Codes 1 1 1 1 1 1 0 0 0 0 Gray Codes + + + + Convert binary number 11111 to gray code. 1 1 1 1 1 1 0 0 0 0 Gray Codes + + + +

Gray Codes  Binary 1 0 1 1 0 1 1 0 1 1 Binary + + + + Convert gray code 10110 to binary. 1 0 1 1 0 1 1 0 1 1 Binary + + + +

Gray Codes  Binary 1 1 0 1 1 1 0 0 1 0 Binary + + + + Convert gray code 11011 to binary. 1 1 0 1 1 1 0 0 1 0 Binary + + + +