RFID - EN Encoding information Encoding information J.-D. Chatelain.

Slides:



Advertisements
Similar presentations
Computer Codes Rohit Khokher. Computer Codes Data types NumericNonnumeric IntegerRealAlphabet A, B, C, …,Z a, b, c,…,z Digits 0,…,9 Special Characters.
Advertisements

Review of HTML Ch. 1.
Review Ch.1,Ch.4,Ch.7. Review of tags covered various header tags Img tag Style, attributes and values alt.
How Computers Represent Numbers Friday, Week 5. Binary Code A series of 1’s and 0’s Place value is in powers of 2.
Processing Data.
Digital Circuit Why Digital Circuit? – Digital signals ( 0 and 1) are very easy to handle with electronic circuits only 2 states needed: Switch ON or OFF,
Representing Information as Bit Patterns Lecture 4 CSCI 1405, CSCI 1301 Introduction to Computer Science Fall 2009.
Overview Digital Systems and Computer Systems Number Systems [binary, octal and hexadecimal] Arithmetic Operations Base Conversion Decimal Codes [BCD (binary.
Data Representation (in computer system) Computer Fundamental CIM2460 Bavy LI.
1 12/08/03SW Abingdon and Witney College Binary Converting to and from decimal.
Data Storage. SIGN AND MAGNITUDE Storing and representing numbers.
Bits and Bytes.
CODING SYSTEMS CODING SYSTEMS CODING SYSTEMS. CHARACTERS CHARACTERS digits: 0 – 9 (numeric characters) letters: alphabetic characters punctuation marks:
9/15/09 - L3 CodesCopyright Joanne DeGroat, ECE, OSU1 Codes.
Hexadecimal and ASCII Lesson Objective: Understand the purpose of ASCII and how to use it. Lesson Outcome: Convert between Hexadecimal and ASCII Convert.
Bits, Bytes, KiloBytes, MegaBytes, GigaBytes & TeraBytes.
©Brooks/Cole, 2003 Chapter 2 Data Representation.
Aloha Aloha What you see: What the computer sees: binary number columns binary number columns
Data Representation S2. This unit covers how the computer represents- Numbers Text Graphics Control.
Binary Code.
1 Pertemuan 2 Network Math. Discussion Topics Binary presentation of data Bits and bytes Base 10 number system Base 2 number system Converting decimal.
©Contrinex JDC PPT_XF_BinHexDecASCII Encoding information J.-D. Chatelain.
1 3 Computing System Fundamentals 3.5 Data Representation.
Section 3.1: Number Representation Practice HW (not to hand in) From Barr Text p. 185 # 1-5.
Computer Science Binary. Binary Code Remember the power supply that is inside your computer and how it sends electricity to all of the components? That.
Section 4.3 Other Bases.
Data Representation, Number Systems and Base Conversions
Binary System Presented by Mr. Wilhelmi Internal Representation of Data Input Input  Data that is put into the computer for processing Data Data  The.
Business Programming I Fall – 2000 By Jim Payne Lecture 05Jim Payne - University of Tulsa2 Alphanumeric Storage Numbers that are not numbers? Alphabetic.
Binary 101 Gads Hill School. Aim To strengthen understanding of how computers use the binary number system to store information.
HNC COMPUTING - COMPUTER PLATFORMS 1 Micro Teach Binary.
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.
A+ Computer Repair Lesson 3: Number System. Objectives Define binary, decimal, octal, and hexadecimal numbering systems. Define binary, decimal, octal,
Fall’ 2014 Lesson - 1 Number System & Program Design CSE 101.
Understanding Computers
Binary a. express numbers in binary, binary-coded decimal (BCD), octal and hexadecimal;
CHAPTER 3 BINARY NUMBER SYSTEM. Computers are electronic machines which operate using binary logic. These devices use two different values to represent.
Understanding Binary Understanding Computers. Understanding Computers L3 – Understanding Binary Learning Objectives All will Understand why all data is.
1.4 Representation of data in computer systems Character.
Lecture Coding Schemes. Representing Data English language uses 26 symbols to represent an idea Different sets of bit patterns have been designed to represent.
COMPUTER ORGANIZATION 4 TH LECTURE. ASCII Code  ASCII ( American Standard Code for Information Interchange).  Input and output devices that communicate.
Understanding binary Understanding Computers.
Unit 18: Computational Thinking
CSCI 198: Lecture 4: Data Representation
BINARY CODE.
Data Transfer ASCII FILES.
CSCI 161: Lecture 4: Data Representation
What is Binary? Binary is a two-digit (Base-2) numerical system, which computers use to process and store data. The reason computers use the binary system.
Data Encoding Characters.
Computers & Programming Languages
Digital Electronics Ms. Deepa Mehta.
Numbering System TODAY AND TOMORROW 11th Edition
Binary Lesson 3 Hexadecimal
Binary Lesson 2 Bytes.
Presenting information as bit patterns
Binary Lesson 2 Bytes.
Binary Lesson 3 Hexadecimal
Binary Lesson 3 Hexadecimal
Binary Lesson 2 Bytes.
How Computers Store Data
Binary Lesson 3 Hexadecimal
Binary Lesson 4 Hexadecimal and Binary Practice
Learning Intention I will learn how computers store text.
Binary Lesson 4 Hexadecimal and Binary Practice
Number Systems Today, I’ll be giving an introduction to:
Chapter 3 - Binary Numbering System
Binary Lesson 7 Review of Binary and Hexadecimal
Lecture 36 – Unit 6 – Under the Hood Binary Encoding – Part 2
Section 4.3 Other Bases.
Presentation transcript:

RFID - EN Encoding information Encoding information J.-D. Chatelain

What does mean a number like 8604? RFID - EN Encoding information Almost whole Humanity today uses the same ten symbols called "Arabic numerals" and scored 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9. Counting The ten symbols combined allow to represent any number that is said then expressed in base 10, or as decimal. What does mean a number like 8604? 8604 = 8 times 10 3 + 6 times 10 2 + 0 times 10 1 + 4 times 10 0 To represent numbers, men have first used the hand, which has led to the decimal base

What does mean a number like 1101? RFID - EN Encoding information 4 2 3 1 9 8 7 6 5 Imagine that instead of ten symbols, we do has only two, 0 and 1, called bits. Counting These two symbols, combined, can represent any number that is said then expressed in base 2, or in binary mode. What does mean a number like 1101? 1101 = 1 times 2 3 + 1 times 2 2 + 0 times 2 1 + 1 times 2 0 = 13 A binary numbering system is used in electronics because it is easy to determine whether a switch is open or closed.

What does mean a number like D3A? RFID - EN Encoding information 4 2 3 1 9 8 7 6 5 In computing, it has become customary to group the binary digits into words of eight bits or bytes Counting one byte A byte allows to encode 2 8 = 256 different values. It is unthinkable to use a different symbol for each of 256 combinations allowed. However, splitting the byte into two 4-bit words, each word can encode 2 4 = 16 combinations. It is conceivable to assign a symbol to each of the 16 different values: These symbols, combined, can represent any number that is said then expressed in base 16, or in hex mode What does mean a number like D3A? D3A = D(=13) times 16 2 + 3 times 16 1 + A(=10) times 16 0 = 3386

Example: encoding M: Hex Binary 4 D 0100 1101 RFID - EN Encoding information ASCII (American Standard Code for Information Interchange) used for encoding alphanumeric characters in computer Example: encoding M: Hex Binary 4 D 0100 1101

Encoding information End of this chapter J.-D. Chatelain RFID - EN