Unit 2.6 Data Representation Lesson 2 ‒ Characters

Slides:



Advertisements
Similar presentations
Review Ch.1,Ch.4,Ch.7. Review of tags covered various header tags Img tag Style, attributes and values alt.
Advertisements

Binary Representation Introduction to Computer Science and Programming I Chris Schmidt.
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,
Data Representation (in computer system) Computer Fundamental CIM2460 Bavy LI.
Bits and Bytes.
COMPUTER FUNDAMENTALS David Samuel Bhatti
Computer Systems Nat 4/5 Computing Science Data Representation Lesson 3: Storing Text.
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.
CHARACTERS Data Representation. Using binary to represent characters Computers can only process binary numbers (1’s and 0’s) so a system was developed.
Dale & Lewis Chapter 3 Data Representation
Chapter 3 Representing Numbers and Text in Binary Information Technology in Theory By Pelin Aksoy and Laura DeNardis.
Representing text Each of different symbol on the text (alphabet letter) is assigned a unique bit patterns the text is then representing as.
Agenda Data Representation – Characters Encoding Schemes ASCII
Bits & Bytes: How Computers Represent Data
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’
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.
Globalisation & Computer systems Week 4 writing systems and their implications for globalisation character representation ASCII extended ASCII code pages.
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,
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.
Number Representations What all the numbers can mean.
Computer System Basics 1 Number Systems & Text Representation Computer Forensics BACS 371.
Data Files on Computers Text Files (ASCII) Files that can be created by typing on the keyboard while using a text editor such as notepad or TextEdit.
Data Encoding COSC Computers and Data Computers store information as sequences of bits Computers store many types of data: numbers text audio images.
1 Problem Solving using Computers “Data....Representation, and Storage.
M204 - Data Representation
HNC COMPUTING - COMPUTER PLATFORMS 1 Micro Teach Binary.
A+ Computer Repair Lesson 3: Number System. Objectives Define binary, decimal, octal, and hexadecimal numbering systems. Define binary, decimal, octal,
Understanding Computers
Binary a. express numbers in binary, binary-coded decimal (BCD), octal and hexadecimal;
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.
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.
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
Understanding binary Understanding Computers.
GCSE COMPUTER SCIENCE Topic 3 - Data 3.2 Data Representation.
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
Information Support and Services
Data Encoding Characters.
TOPICS Information Representation Characters and Images
Data Representation ASCII.
Representing Nonnumeric Data
Representing Characters
Objective of the lesson
Data Representation Question: Characters
Presenting information as bit patterns
Digital Encodings.
Storing Negative Integers
Learning Intention I will learn how computers store text.
Electronic Memory.
ASCII LP1.
Chapter 3 - Binary Numbering System
Lecture 36 – Unit 6 – Under the Hood Binary Encoding – Part 2
ASCII and Unicode.
Presentation transcript:

Unit 2.6 Data Representation Lesson 2 ‒ Characters

Starter Question If you type your name into the keyboard, how does the computer know how to show the correct characters? Watch this video which may help! https://www.youtube.com/watch?v=JwWoVQXQ24k

Learning Objectives Explain the use of binary codes to represent characters Know the term character set Describe with examples (for example ASCII and Unicode) the relationship between the number of bits

How many bits would you need to code an entire keyboard? How many keys are there on a normal keyboard? What is a bit? What is a Byte?

Using these decimal codes, what would the word Computing look like?

The code used to translate language between computers and people is called ASCII: It is pronounced ‘askee’

American Standard Code for Information Interchange ASCII is short for: American Standard Code for Information Interchange

In ASCII the word "cat" would be: 1000011 1100001 1110100

ASCII: is the standard code used by computers everywhere to represent the Strings and Numbers you can type using the keyboard

Activity 1 Using the character codes in the table, write a message in binary for the person sat next to you. Swap messages and ask them to decode it!

ASCII conversion table:

You try On a blank sheet of paper, write your name Using the ASCII chart, lookup the binary values for each letter and write it down in a series Don’t forget the spaces between your letters Give your encoded name to a friend Have them decode the code

How many bits are required to store ASCII codes? 8 bits can store 256 characters ENGLISH Keyboard uses 128 characters what are the others codes used for?

Extended ASCII: languages such as German, French, Finnish, Irish, Icelandic, take advantage of the other 128 spaces to include their own special characters. e.g. the German umlaut ü is 11011100 What is the value of 11011100? =

The term character set is used to describe a digital representation of text: ASCII is the most widely used character set The entire collection of characters available in a system such as ASCII is called a character set.

Character Set ASCII and Unicode are the most widely used character sets. The term Character set is used to describe the possible characters that can be represented in a computer system.

Other character sets in common use are: Extended ASCII (8 bits – 256 characters) UTF-8 (8 bits – 256 characters) Unicode (16 bits – 65536 characters)

Number of bits ASCII uses 1 byte to store all of the characters needed for the English language. This gives 256 possible characters which is enough for the English language. However what would other languages use such as Arabic where they have thousands of characters?

Unicode unicode was developed to account for every language in the world. it uses 2 bytes that give us 216 possibilities (65,536). an example use of this would allow a user from any country to select their language when setting up an operating system. the unicode character set would account for every language.