Learning Intention I will learn how computers store text.

Slides:



Advertisements
Similar presentations
KFUPM COE 202: Digital Logic Design Number Systems Part 3 Courtesy of Dr. Ahmad Almulhem.
Advertisements

Computer Codes Rohit Khokher. Computer Codes Data types NumericNonnumeric IntegerRealAlphabet A, B, C, …,Z a, b, c,…,z Digits 0,…,9 Special Characters.
Technology ICT Option: Data Representation. Data Representation In our everyday lives, we communicate with each other using analogue data. This data takes.
Representing Data, Pictures, Time, and Size in Computer
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,
Representing Information as Bit Patterns Lecture 4 CSCI 1405, CSCI 1301 Introduction to Computer Science Fall 2009.
©Brooks/Cole, 2003 Chapter 2 Data Representation.
Representation of Data How is data (numbers, characters) represented so that it can be used in a Computer ?
Data Representation (in computer system) Computer Fundamental CIM2460 Bavy LI.
Bits and Bytes.
Computer Systems Nat 4/5 Computing Science Data Representation Lesson 3: Storing Text.
CODING SYSTEMS CODING SYSTEMS CODING SYSTEMS. CHARACTERS CHARACTERS digits: 0 – 9 (numeric characters) letters: alphabetic characters punctuation marks:
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.
Bits, Bytes, KiloBytes, MegaBytes, GigaBytes & TeraBytes.
Bits & Bytes: How Computers Represent Data
Computer System Basics 1 Number Systems & Text Representation Computer Forensics BACS 371.
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.
Binary Arithmetic & Data representation
Computer Structure & Architecture 7c - Data Representation.
Ahmad Almulhem, KFUPM 2010 COE 202: Digital Logic Design Number Systems Part 4 Dr. Ahmad Almulhem ahmadsm AT kfupm Phone: Office:
Slide 1 Wednesday, October 07, 2015 Low Level Machine.
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.
1.11, 1.12, 1.13, 1.14, 1.18, 1.20, 1.23, 1.24, 1.25, 1.32, 1.33.
COMPSCI 210 Semester Tutorial 1
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.
GCSE ICT Storing data - Internal memory, backing storage, and measuring memory.
Data Representation (in computer system). Data Representation How do computers represent data? b The computers are digital Recognize.
OFF = 0 ON = 1 = 63 BINARY system
Business Programming I Fall – 2000 By Jim Payne Lecture 05Jim Payne - University of Tulsa2 Alphanumeric Storage Numbers that are not numbers? Alphabetic.
Data Representation.
Binary 101 Gads Hill School. Aim To strengthen understanding of how computers use the binary number system to store information.
HNC COMPUTING - COMPUTER PLATFORMS 1 Micro Teach Binary.
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.
Understanding Computers
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.
Nat 4/5 Computing Science Data Representation Lesson 3: Storing Text
Nat 4/5 Computing Science Data Representation Lesson 3: Storing Text
Text and Images Key Revision Points.
Storing Graphics Nat 5 Data Representation Lesson 4a: Storing Graphics
Understanding binary Understanding Computers.
Unit 2.6 Data Representation Lesson 2 ‒ Characters
Unit 18: Computational Thinking
CSCI 198: Lecture 4: Data Representation
Data Transfer ASCII FILES.
1.11, 1.12, 1.13, 1.14, 1.18, 1.20, 1.23, 1.24, 1.25, 1.32, 1.33 ( 47 )8 = ( )2 ( 47 )16 = ( )2 ( 20 )10.
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.
Breaking the Code Can anyone guess the phrase from this “code”?
Data Encoding Characters.
TOPICS Information Representation Characters and Images
Data Representation ASCII.
Lecture 3 ISE101: Computing Fundamentals
Representing Characters
Data Representation Question: Characters
How does a computer represent everything using just zeros and ones?
Computers & Programming Languages
Presenting information as bit patterns
Binary keyboard challenge
C Programming Language
ASCII LP1.
Chapter 3 - Binary Numbering System
ASCII and Unicode.
Presentation transcript:

Learning Intention I will learn how computers store text

Storing Text Computers use binary to store characters A character is a letter, number or symbol from the keyboard. Characters include: digits (0-9) letters (A-Z,a-z) special characters (,#@;* etc)

Storing Text The list of characters a computer can process and store is called the character set. Each character is given a unique code number using 8-bits (1 byte)

Storing Text Most popular form of code is ASCII (ask-eee) – American Standard Code for Information Interchange. Extended ASCII uses 28 different codes = 256 different codes. e.g. 01000001 = 65 = A 01000010 = 66 = B

Complete Task 3

Success Criteria I can convert from text to binary and vice-versa.