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.

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

MCT260-Operating Systems I Operating Systems I Using Text Editors.
Representing Information as Bit Patterns Lecture 4 CSCI 1405, CSCI 1301 Introduction to Computer Science Fall 2009.
Data Representation (in computer system) Computer Fundamental CIM2460 Bavy LI.
1 12/08/03SW Abingdon and Witney College Binary Converting to and from decimal.
Lesson 2 0x Coding ASCII Code.
CIS 234: Character Codes Dr. Ralph D. Westfall April, 2011.
COMPUTER FUNDAMENTALS David Samuel Bhatti
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:
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.
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.
RAM and Binary Numbers RAM and Binary Numbers What is ? What is 52 in binary? What is a file? Preview Questions:
Representing text Each of different symbol on the text (alphabet letter) is assigned a unique bit patterns the text is then representing as.
Binary Numbers and ASCII and EDCDIC Mrs. Cueni. Data Representation  Human speech is analog because it uses continuous signals (waves) that vary in strength.
Computer System Basics 1 Number Systems & Text Representation Computer Forensics BACS 371.
Coding System Text Representation ASCII Collating Sequence.
Chapter 2 Computer Hardware
Binary Arithmetic & Data representation
Computer Structure & Architecture 7c - Data Representation.
Computers and Text Daniel Velasquez Scott Baranick.
Binary Code.
Fill in the blanks: (1) _________ has only two possible values 0 and 1. (2) There are __________bits in a byte. (3) 1 kilobyte of memory space can store.
HOW COMPUTERS MANIPULATE DATA Chapter 1 Coming up: Analog vs. Digital.
What is a computer? A computer is a device that:
Characters. Character Data char data type – Represents one character – char literals indicated with ' '
1 Data Representation Characters, Integers and Real Numbers Binary Number System Octal Number System Hexadecimal Number System Powered by DeSiaMore.
SEC (1.4) Representing Information as bit patterns.
Agenda ASCII char N int Character class char N String Bitwise operators homework.
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.
L EARN TO C OUNT IN B INARY CALLED “M ACHINE L ANGUAGE ” T HE L ANGUAGE OF THE C OMPUTER …. Now you will become a real “bit head” or “computer nerd” 0’s.
The character data type char. Character type char is used to represent alpha-numerical information (characters) inside the computer uses 2 bytes of memory.
CS 111 – Sept. 1 Intro to data representation Binary numbers –Convert binary  decimal –Convert decimal  binary Text –ASCII and Unicode Commitment: –For.
Representation of Characters
Agenda Character representation Numerical Conversions ASCII EBCDIC
M204 - Data Representation
ASCII AND EBCDIC CODES By : madam aisha.
Representing Characters in a Computer System Representation of Data in Computer Systems.
Information Coding Schemes Group Member : Yvonne Tiffany Jurifah bt Junaidi Clara Jane George.
Nguyen Le CS147.  2.4 Signed Integer Representation  – Signed Magnitude  – Complement Systems  – Unsigned Versus Signed Numbers.
CC111 Lec#2 The System Unit The System Unit: Processing and Memory Lecture 2 Binary System.
THE CODING SYSTEM FOR REPRESENTING DATA IN COMPUTER.
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.
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
DATA REPRESENTATION - TEXT
Binary 1 Basic conversions.
Binary Numbers and ASCII and EDCDIC
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
Data Encoding Characters.
TOPICS Information Representation Characters and Images
Data Representation ASCII.
Representing Characters
Presenting information as bit patterns
COMS 161 Introduction to Computing
COMS 161 Introduction to Computing
Digital Encodings.
Learning Intention I will learn how computers store text.
Text Representation ASCII Collating Sequence
C Programming Language
ASCII LP1.
ASCII and Unicode.
Presentation transcript:

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 printing. Standards were required to make sure computers used the same codes for the characters. ASCII was set up – American Standard Code for information Interchange.

Representing Characters in a computer ASCII Represents: 127 Codes – requiring 7 bits 8 bit computers allowed an extra bit to store more mathematical characters Numerical values allow comparisons to sort data All the main alphabetic characters, upper and lower case52 Characters All the numeric symbols, Characters 32 punctuation and other symbols, and ‘space’33 Characters 32 codes reserved for non-printable control codes32 Characters

Representing Characters in a computer Unicode uses 32 bits allowing 4 billion possibilities – which includes multiple languages and characters. ASCII is a subset of Unicode.

Representing Characters in a computer Read page 78 – 79 Answer questions on page 79