CHARACTERS Data Representation. Using binary to represent characters Computers can only process binary numbers (1’s and 0’s) so a system was developed.

Slides:



Advertisements
Similar presentations
Technology ICT Option: Data Representation. Data Representation In our everyday lives, we communicate with each other using analogue data. This data takes.
Advertisements

MCT260-Operating Systems I Operating Systems I Using Text Editors.
Data Representation (in computer system) Computer Fundamental CIM2460 Bavy LI.
Bits and Bytes.
CIS 234: Character Codes Dr. Ralph D. Westfall April, 2011.
ASCII and Unicode. ASCII Inside a computer, EVERYTHING is a number – that includes music, sound, and text. In the early days of computers, every manufacturer.
Lesson Objectives Explain the use of binary codes to represent characters Explain the term “Character set” Describe with examples (for examples ASCII and.
2.1.4 BINARY ASCII CHARACTER SETS A451: COMPUTER SYSTEMS AND PROGRAMMING.
Computer Systems Nat 4/5 Computing Science Data Representation Lesson 3: Storing Text.
Decisions in Python Comparing Strings – ASCII History.
Introduction to Human Language Technologies Tomaž Erjavec Karl-Franzens-Universität Graz Tomaž Erjavec Lecture: Character sets
Binary Numbers and ASCII and EDCDIC Mrs. Cueni. Data Representation  Human speech is analog because it uses continuous signals (waves) that vary in strength.
Agenda Data Representation – Characters Encoding Schemes ASCII
Data Representation Prepared by Dr P Marais (Modified by D Burford)
Chapter 4: Representation of data in computer systems: Characters OCR Computing for GCSE © Hodder Education 2011.
Data Representation S2. This unit covers how the computer represents- Numbers Text Graphics Control.
Binary Arithmetic & Data representation
Computer Structure & Architecture 7c - Data Representation.
Slide 1 Wednesday, October 07, 2015 Low Level Machine.
1 3 Computing System Fundamentals 3.5 Data Representation.
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.
Data Representation Conversion 24/04/2017.
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.
Binary System Presented by Mr. Wilhelmi Internal Representation of Data Input Input  Data that is put into the computer for processing Data Data  The.
Data Representation. What is data? Data is information that has been translated into a form that is more convenient to process As information take different.
Computer Skills Dr. Omar Al Jadaan RAK-MHSU College of Medical Sciences
M204 - Data Representation
© 2001, Penn State University Encoding on the Internet Elizabeth J. Pyatt CETS.
Binary 101 Gads Hill School. Aim To strengthen understanding of how computers use the binary number system to store information.
Representing Characters in a Computer System Representation of Data in Computer Systems.
09/06/ Data Representation ASCII, Binary Denary Conversion, Integer & Boolean data types.
Understanding Computers
Data Representation. In our everyday lives, we communicate with each other using analogue data. This data takes the form of: Sound Images Letters Numbers.
THE CODING SYSTEM FOR REPRESENTING DATA IN COMPUTER.
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.
1 Non-Numeric Data Representation V1.0 (22/10/2005)
Nat 4/5 Computing Science Data Representation Lesson 3: Storing Text
Nat 4/5 Computing Science Data Representation Lesson 3: Storing Text
DATA REPRESENTATION - TEXT
Binary Representation in Text
Binary Representation in Text
Data Representation.
Understanding binary Understanding Computers.
Unit 2.6 Data Representation Lesson 2 ‒ Characters
Chapter 3 - Binary Numbering System
Binary 1 Basic conversions.
INTERNATIONALIZATION
Binary Numbers and ASCII and EDCDIC
CSCI 198: Lecture 4: Data Representation
Data Transfer ASCII FILES.
CSCI 161: Lecture 4: Data Representation
BITS & BYTES.
Representing Information as bit patterns
Data Encoding Characters.
TOPICS Information Representation Characters and Images
Data Representation ASCII.
Representing Nonnumeric Data
Representing Characters
Data Representation Question: Characters
Computers & Programming Languages
Ch2: Data Representation
Learning Intention I will learn how computers store text.
Option: Data Representation
Option: Data Representation
C Programming Language
ASCII LP1.
Chapter 3 - Binary Numbering System
ASCII and Unicode.
Presentation transcript:

CHARACTERS Data Representation

Using binary to represent characters Computers can only process binary numbers (1’s and 0’s) so a system was developed to allow for the use of the full set of alphabetical characters. It includes both upper and lower case characters, numbers and symbols. Most commonly used system is called the 7 bit standard ASCII code (American Standard Code for Information Interchange). Has space for 128 symbols which is enough for standard English.

ASCII As it only uses 7 bits, it needs an 8 bit byte with the highest bit always stored as zero

Extended ASCII Standard ASCII only uses the first 128 numbers out of a possible 256. Other languages need to use the other 128 spaces to include their own special characters so this is called the extended ASCII character set. There is not one single standard agreed extended code set, there are many including ‘Latin 1 Western European’ which is the default set for Windows, or ‘Latin 2 Central European’.

Character Set You enter data into a computer by means of an input device such as a keyboard. Keyboard sends a signal to the computer saying what key has been pressed. This signal is a binary number. There needs to be a translation between the signal and what appears on the screen. This is the job of the character set. A character set converts a binary number/code into a written language character.

Unicode A 1 byte system can only represent 256 symbols which is fine for most languages so ASCII is used. A 2 byte scheme can represent over 65,000 characters which is enough to hold every used language in the world. A very popular 2 byte coding standard is called ‘Unicode’. It can handle any language. The user selects a specific code page which represents a chosen language e.g. code page 1253 represents the Greek language.

ASCII – Binary Character Table