Data Representation ASCII.

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

How Computers Represent Numbers Friday, Week 5. Binary Code A series of 1’s and 0’s Place value is in powers of 2.
Text Representation within Computers CS208. The Binary Digit (Bit) One bit can encode a value set that contains two elements e.g. {black, white}, {up,
Chapter 8_2 Bits and the "Why" of Bytes: Representing Information Digitally.
Data Representation in Computers
Data Representation (in computer system) Computer Fundamental CIM2460 Bavy LI.
Lesson 2 0x Coding ASCII Code.
Binary Numbers.
Data Storage. SIGN AND MAGNITUDE Storing and representing numbers.
Computer Systems Nat 4/5 Computing Science Data Representation Lesson 3: Storing Text.
Computer Systems Nat 4/5 Computing Science Data Representation Lesson 3: Storing Text.
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.
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.
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.
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,
COMPSCI 210 Semester Tutorial 1
CS151 Introduction to Digital Design
1 3 Computing System Fundamentals 3.5 Data Representation.
Bits and Bytes IGCSE. A binary number is either a 0 or a 1 and is known as a 'bit' or b inary dig it. However, the CPU cannot deal with just one bit at.
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 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.
Introduction to Unix (CA263) File Editing By Tariq Ibn Aziz.
Data Representation The storage of Text Numbers Graphics.
Binary 101 Gads Hill School. Aim To strengthen understanding of how computers use the binary number system to store information.
DATA REPRESENTATION 4 Y. Colette Lemard February 2009.
Representing Characters in a Computer System Representation of Data in Computer Systems.
HNC COMPUTING - COMPUTER PLATFORMS 1 Micro Teach Binary.
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.
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.
Nat 4/5 Computing Science Data Representation Lesson 3: Storing Text
Nat 4/5 Computing Science Data Representation Lesson 3: Storing Text
Some basic concepts underlying computer archi­tecture
Binary Representation in Text
Binary Representation in Text
Storing Graphics Nat 5 Data Representation Lesson 4a: Storing Graphics
Understanding binary Understanding Computers.
Unit 2.6 Data Representation Lesson 2 ‒ Characters
Chapter 3 Data Representation Text Characters
Binary 1 Basic conversions.
Binary Numbers and ASCII and EDCDIC
CSCI 198: Lecture 4: Data Representation
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.
Guide To UNIX Using Linux Third Edition
Breaking the Code Can anyone guess the phrase from this “code”?
Data Encoding Characters.
Representing Characters
Data Representation Question: Characters
Ch2: Data Representation
Data Representation Conversion 05/12/2018.
Binary Data representation
Presenting information as bit patterns
COMS 161 Introduction to Computing
Storing Negative Integers
ICT Programming Lesson 1:
Learning Intention I will learn how computers store text.
Option: Data Representation
Option: Data Representation
ASCII LP1.
Chapter 3 - Binary Numbering System
ASCII and Unicode.
Presentation transcript:

Data Representation ASCII

What is ASCII A – American S – Standard C – Code for I – Information I – Interchange

Character Set A character set is all the letters, numbers and symbols on a keyboard. ASCII is a character set. The character set will vary between countries e.g. if any of you study French you will know that some their characters are different, so they have a different character set. It is possible to change the character set used on a desk top computer.

How is ASCII Stored ASCII is stored in bits and only 7 bits are required to store the code, but because we usually deal with groups of 8 (a byte) so an additional zero is added to the start of the code.

ASCII codes ASCII assigns every character in your character set Decimal A 01000001 65 B 01000010 66 Z 01011010 90 a 01100001 97 2 00110010 50 Beep 00000111 7 & 00100110 38 ASCII assigns every character in your character set with a unique code.

Control Character Most ACSII characters are either displayed on screen or can be printed on a printer. E.g. A, 2 Control characters include keys such as RETURN, TAB and DELETE. These are action buttons, that don’t show on screen.

Using 7 bits it is possible to store 27 = 2x2x2x2x2x2x2 = 128 Different characters in ASCII, However the English language requires fewer than 128 characters.

Written Task Exercise 2 (all)