There are 10 different types of people in the world. Those who understand binary and those that don’t.

Slides:



Advertisements
Similar presentations
Computer Codes Rohit Khokher. Computer Codes Data types NumericNonnumeric IntegerRealAlphabet A, B, C, …,Z a, b, c,…,z Digits 0,…,9 Special Characters.
Advertisements

Representing Data, Pictures, Time, and Size in Computer
How Computers Represent Numbers Friday, Week 5. Binary Code A series of 1’s and 0’s Place value is in powers of 2.
Using Binary Coding Information Remember  Bit = 0 or 1, Binary Digit  Byte = the number of bits used to represent letters, numbers and special characters.
Using Binary Coding Information Remember  Bit = 0 or 1, Binary Digit  Byte = the number of bits used to represent letters, numbers and special characters.
Processing Data.
Data Representation (in computer system) Computer Fundamental CIM2460 Bavy LI.
1 12/08/03SW Abingdon and Witney College Binary Converting to and from decimal.
Data Storage. SIGN AND MAGNITUDE Storing and representing numbers.
CCE-EDUSAT SESSION FOR COMPUTER FUNDAMENTALS Date: Session III Topic: Number Systems Faculty: Anita Kanavalli Department of CSE M S Ramaiah.
Bits and Bytes.
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:
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
CCE-EDUSAT SESSION FOR COMPUTER FUNDAMENTALS Faculty: Anita Kanavalli Department of CSE M S Ramaiah Institute of Technology Bangalore E mail-
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.
Binary Numbers and ASCII and EDCDIC Mrs. Cueni. Data Representation  Human speech is analog because it uses continuous signals (waves) that vary in strength.
Agenda Data Representation – Characters Encoding Schemes ASCII
Introduction to Number Representation F451 Year 10 Computing Binary Numbers Binary Numbers Sign/Magnitude Sign/Magnitude 2s Complement 2s Complement Binary.
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’
Data Representation S2. This unit covers how the computer represents- Numbers Text Graphics Control.
Binary Arithmetic & Data representation
1 INFORMATION IN DIGITAL DEVICES. 2 Digital Devices Most computers today are composed of digital devices. –Process electrical signals. –Can only have.
Computer System Basics 1 Number Systems & Text Representation Computer Forensics BACS 371.
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.
Representation of Characters
Agenda Character representation Numerical Conversions ASCII EBCDIC
Business Programming I Fall – 2000 By Jim Payne Lecture 05Jim Payne - University of Tulsa2 Alphanumeric Storage Numbers that are not numbers? Alphabetic.
DATA REPRESENTATION 4 Y. Colette Lemard February 2009.
ASCII AND EBCDIC CODES By : madam aisha.
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.
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.
1 Non-Numeric Data Representation V1.0 (22/10/2005)
Nat 4/5 Computing Science Data Representation Lesson 3: Storing Text
Binary Representation in Text
Unit 2.6 Data Representation Lesson 2 ‒ Characters
Chapter 3 - Binary Numbering System
Lesson Objectives Aims You should be able to:
Binary 1 Basic conversions.
Binary Numbers and ASCII and EDCDIC
Data Transfer ASCII FILES.
Bits & Bytes How Computers Represent Data
Representing Information as bit patterns
Data Encoding Characters.
TOPICS Information Representation Characters and Images
Data Representation ASCII.
Coding Schemes and Number Systems
Lecture 3 ISE101: Computing Fundamentals
Data Representation Question: Characters
Computer Data Types Basics of Computing.
Dr. Clincy Professor of CS
Presenting information as bit patterns
COMS 161 Introduction to Computing
C1 Number systems.
How Computers Store Data
Learning Intention I will learn how computers store text.
ASCII LP1.
Chapter 3 - Binary Numbering System
Lecture 36 – Unit 6 – Under the Hood Binary Encoding – Part 2
Presentation transcript:

There are 10 different types of people in the world. Those who understand binary and those that don’t.

 Computers can only work with binary data.  Binary data can easily represent numbers.  If we make each number represent a letter, or character, then we can store characters.  One common code uses seven bits to store each character.  This is enough for 2 7 (128) different characters. Enough for all the English language letters plus many symbols such as !”£$%.

 One of the oldest ways to represent characters is the ASCII code.  ASCII = American Standard Code for Information Interchange. BinaryDenaryHexCharacter A B C D E F G

 128 characters are not enough to encode all languages.  There are other systems that use more than 7 bits.  EBCDIC is the Extended Binary Coded Decimal Interchange Code – this is used in IBM mainframes.  It uses 8 bits so can encode 256 different characters.

 Unicode is more common these days.  Unicode comes in different variants, but can encode more than 107,000 characters, covering 90 languages.  For example, Հայերեն हिन्दी עברית ಕನ್ನಡ ქართული कश्मीरी كشميري ) Кыргызча മലയാളം मराठी

 A character set is the total list of characters that are available for a character coding system.  ASCII can code for 128 characters – they are mapped to the 128 possible 7-bit binary numbers.  Unicode defines what characters it encodes and then uses a suitable number of octets to store them as a number.