Data Encoding Characters.

Slides:



Advertisements
Similar presentations
How Computers Represent Numbers Friday, Week 5. Binary Code A series of 1’s and 0’s Place value is in powers of 2.
Advertisements

Data Representation (in computer system) Computer Fundamental CIM2460 Bavy LI.
Data Storage. SIGN AND MAGNITUDE Storing and representing numbers.
Bits and Bytes.
Chapter 3 Data Representation Text Characters. 2 Representing Text To represent a text document in digital form, we need to be able to represent every.
Lesson Objectives Explain the use of binary codes to represent characters Explain the term “Character set” Describe with examples (for examples ASCII and.
CODING SYSTEMS CODING SYSTEMS CODING SYSTEMS. CHARACTERS CHARACTERS digits: 0 – 9 (numeric characters) letters: alphabetic characters punctuation marks:
CHARACTERS Data Representation. Using binary to represent characters Computers can only process binary numbers (1’s and 0’s) so a system was developed.
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.
Representing text Each of different symbol on the text (alphabet letter) is assigned a unique bit patterns the text is then representing as.
Chapter 4: Representation of data in computer systems: Characters OCR Computing for GCSE © Hodder Education 2011.
It is pronounced ‘askee’
Data Representation S2. This unit covers how the computer represents- Numbers Text Graphics Control.
Computer Math CPS120: Data Representation. Representing Data The computer knows the type of data stored in a particular location from the context in which.
Chapter 2 Computer Hardware
Binary Arithmetic & Data representation
Computer Structure & Architecture 7c - Data Representation.
Data Representation A series of eight bits is called a byte. A byte can be used to represent a number or a character. As you’ll see in the following table,
Binary Code.
Chapter 3 Section 1 Number Representation Modern cryptographic methods, unlike the classical methods we just learned, are computer based. Representation.
1 3 Computing System Fundamentals 3.5 Data Representation.
Computer System Basics 1 Number Systems & Text Representation Computer Forensics BACS 371.
SEC (1.4) Representing Information as bit patterns.
Representing Characters in a computer Pressing a key on the computer a code is generated that the computer can convert into a symbol for displaying or.
The character data type char. Character type char is used to represent alpha-numerical information (characters) inside the computer uses 2 bytes of memory.
Representation of Characters
Agenda Character representation Numerical Conversions ASCII EBCDIC
Technology in Action Chapter 6 Behind the Scenes: A Closer Look at System Hardware.
1 Problem Solving using Computers “Data....Representation, and Storage.
Characters CS240.
Information Coding Schemes Group Member : Yvonne Tiffany Jurifah bt Junaidi Clara Jane George.
HNC COMPUTING - COMPUTER PLATFORMS 1 Micro Teach Binary.
The ASCII Alphanumeric Code What is it? Why use it? How do we use it?
Understanding Computers
THE CODING SYSTEM FOR REPRESENTING DATA IN COMPUTER.
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.
Introduction to computer science Lec2 cs111. Extended Binary Coded Decimal Interchange Code (EBCDIC) is an 8- bit character encoding used mainly on.
There are 10 different types of people in the world. Those who understand binary and those that don’t.
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.
1 Non-Numeric Data Representation V1.0 (22/10/2005)
Nat 4/5 Computing Science Data Representation Lesson 3: Storing Text
GCSE COMPUTER SCIENCE Data 2.2 Characters and Images.
Conversion of information in different coding systems
Understanding binary Understanding Computers.
Unit 2.6 Data Representation Lesson 2 ‒ Characters
GCSE COMPUTER SCIENCE Topic 3 - Data 3.2 Data Representation.
Chapter 3 - Binary Numbering System
Chapter 3 Data Representation Text Characters
Lesson Objectives Aims You should be able to:
Binary 1 Basic conversions.
CSCI 198: Lecture 4: Data Representation
Data Transfer ASCII FILES.
CSCI 161: Lecture 4: Data Representation
Breaking the Code Can anyone guess the phrase from this “code”?
Representing Information as bit patterns
TOPICS Information Representation Characters and Images
Data Representation ASCII.
Data Representation Question: Characters
Presenting information as bit patterns
Digital Encodings.
How Computers Store Data
Learning Intention I will learn how computers store text.
FIGURE 1-1 Examples of Voltage Ranges and Waveforms for Binary Signals
ASCII LP1.
Lecture 36 – Unit 6 – Under the Hood Binary Encoding – Part 2
ASCII and Unicode.
Introduction to UNICODE (ஒருங்குறி)
Presentation transcript:

Data Encoding Characters

ASCII Question: What is the ASCII code for C? Computers have to be able to represent letters and symbols as well as numbers. Basically, the idea is to give each character a number as a code and store the codes and their meanings in a table. A common code is ASCII - the American Standard Code for Information Interchange. Symbol Binary A 0100 0001 B 0100 0010 C 0100 0011 D 0100 0100 E 0100 0101 F 0100 0110 This uses seven bits to store characters. Seven bits is enough to code 128 different characters. Question: What is the ASCII code for C? Complete tasks 6.1 to 6.5.

Unicode Unicode is an alternative encoding system. It uses 16 bits to encode each character and is therefore able to represent far more characters than ASCII (over 65,000).