Computers and Text Daniel Velasquez Scott Baranick.

Slides:



Advertisements
Similar presentations
MERICAN A S C I I TANDARD ODEfor NFORMATION NTERCHANGE A COMMON ALPHA / NUMERIC CODE USED IN COMPUTER DATA COMMUNICATIONS.
Advertisements

Computer Systems Nat 4/5 Data Representation Lesson 4: Storing Graphics.
Binary Expression Numbers & Text CS 105 Binary Representation At the fundamental hardware level, a modern computer can only distinguish between two values,
1 Lab Session-III CSIT-120 Spring 2001 Revising Previous session Data input and output While loop Exercise Limits and Bounds GOTO SLIDE 13 Lab session.
Data Representation (in computer system) Computer Fundamental CIM2460 Bavy LI.
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.
2.1.4 BINARY ASCII CHARACTER SETS A451: COMPUTER SYSTEMS AND PROGRAMMING.
Decisions in Python Comparing Strings – ASCII History.
Unicode, character sets, and a a little history. Historical Perspective First came EBCIDIC (6 Bits?) Then in the early 1960s came ASCII – Most computers.
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.
©Brooks/Cole, 2003 Chapter 2 Data Representation.
Chapter 2 Data Representation. Define data types. Visualize how data are stored inside a computer. Understand the differences between text, numbers, images,
Representing text Each of different symbol on the text (alphabet letter) is assigned a unique bit patterns the text is then representing as.
Computer System Basics 1 Number Systems & Text Representation Computer Forensics BACS 371.
Chapter 4: Representation of data in computer systems: Characters OCR Computing for GCSE © Hodder Education 2011.
It is pronounced ‘askee’
Page 1 Data Structures in C for Non-Computer Science Majors Kirs and Pflughoeft Bits and Bytes There was one other problem with bytes: Compatibility Compatibility.
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.
Chapter 2 Computer Hardware
Binary Arithmetic & Data representation
Q.
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.
Math Review Do you remember, from math class, how exponentiation operations are typically represented? anan is known as the "base" a is known as the "base"
Computer System Basics 1 Number Systems & Text Representation Computer Forensics BACS 371.
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.
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 BINARY NUMBER SYSTEM “There are only 10 types of people in this world: Those who understand BINARY and those who do not.”
Springfield Technical Community College Center for Business and Technology.
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
Irvine, Kip R. Assembly Language for Intel-Based Computers 6/e, Signed Integers The highest bit indicates the sign. 1 = negative, 0 = positive.
Technology in Action Chapter 6 Behind the Scenes: A Closer Look at System Hardware.
M204 - Data Representation
Representing Characters in a Computer System Representation of Data in Computer Systems.
Lesson 6 Binary Understand what Binary Code means and apply this knowledge Understand how data is represented using bit systems and be able to change decimal.
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
Text and Images Key Revision Points.
DATA REPRESENTATION - TEXT
Binary Representation in Text
Binary Representation in Text
Number Systems.
Conversion of information in different coding systems
Unit 2.6 Data Representation Lesson 2 ‒ Characters
Character coding schemes
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
Phnom Penh International University (PPIU)
Data Encoding Characters.
TOPICS Information Representation Characters and Images
Data Representation ASCII.
Coding Schemes and Number Systems
Representing Characters
Chapter 2 Data Representation.
Digital Encodings.
How Computers Store Data
Learning Intention I will learn how computers store text.
ASCII LP1.
Lecture 36 – Unit 6 – Under the Hood Binary Encoding – Part 2
ASCII and Unicode.
Presentation transcript:

Computers and Text Daniel Velasquez Scott Baranick

Warm Up Can you decipher this secret message? C 63 6F 6D 65

Representing Text ASCII (7-bit) is the first standardized code system ASCII (7-bit) is the first standardized code system ASCII contains codes for 128 different characters ASCII contains codes for 128 different characters

ASCII Stands for: A merican S tandard C ode for I nformation I nterchange A merican S tandard C ode for I nformation I nterchange

ASCII Code Chart

ASCII 77656C636F6D65 welcome

Decipher These Words Can you decipher these coded phrases? C 6C 6F F D 73 6E 2E 63 6F 6D

The Number 5 vs. the Symbol 5 What do all the symbols between 30 and 39 represent? 35 = The symbol "5" 5 = The number 5 5 = The number 5

Transforming ASCII numeric symbols from How would you convert the digit "5" into the number 5? How would you convert the digit "5" into the number 5?

Transforming ASCII Characters Find the ASCII codes for "DOG" Find the ASCII codes for "DOG" Find the ASCII codes for "dog" Find the ASCII codes for "dog" In your own words, what would you do to transform "DOG" into "dog"? In your own words, what would you do to transform "DOG" into "dog"?

What have We Learned So, what happens when you type the letter A? Some think the computer stores a little picture of the letter A into your document. Some think the computer stores a little picture of the letter A into your document. In reality, the computer stores the ASCII code that represents the letter A into your document. In reality, the computer stores the ASCII code that represents the letter A into your document. The computer translates this code into a picture only when the computer needs: The computer translates this code into a picture only when the computer needs: –To show the letter on the screen, or –To print the letter on a report.

Other Code Systems ANSI code standard ANSI code standard –Extended the ASCII code to include symbols for European languages. –8 bit code, supporting 256 different letters and symbols. Unicode Unicode –up to 32 bits are used –more than 109,000 different symbols –covers 93 forms of human writing –Multiple languages can be used in the same document!

Let's do the Worksheet