SEC (1.4) Representing Information as bit patterns.

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 Information as Bit Patterns
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.
Chapter 8_2 Bits and the "Why" of Bytes: Representing Information Digitally.
Representation of Data How is data (numbers, characters) represented so that it can be used in a Computer ?
Characters and Strings. Characters In Java, a char is a primitive type that can hold one single character A character can be: –A letter or digit –A punctuation.
Data Representation (in computer system) Computer Fundamental CIM2460 Bavy LI.
CCE-EDUSAT SESSION FOR COMPUTER FUNDAMENTALS Date: Session III Topic: Number Systems Faculty: Anita Kanavalli Department of CSE M S Ramaiah.
COMPUTER FUNDAMENTALS David Samuel Bhatti
CODING SYSTEMS CODING SYSTEMS CODING SYSTEMS. CHARACTERS CHARACTERS digits: 0 – 9 (numeric characters) letters: alphabetic characters punctuation marks:
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.
1 herbert van de sompel CS 502 Computing Methods for Digital Libraries Cornell University – Computer Science Herbert Van de Sompel
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.
Data Representation Prepared by Dr P Marais (Modified by D Burford)
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.
Working with text ASCII and UNICODE.   
Chapter 1 Data Storage(2) Yonsei University 1 st Semester, 2014 Sanghyun Park.
File Formats Chapter 9 Bit Literacy. File formats are often ignored by users Applications automatically save files in the application’s format All formats.
Globalisation & Computer systems Week 4 writing systems and their implications for globalisation character representation ASCII extended ASCII code pages.
Binary Code.
Characters In Java single characters are represented using the data type char. Character constants are written as symbols enclosed in single quotes, for.
Computer System Basics 1 Number Systems & Text Representation Computer Forensics BACS 371.
Globalisation & Computer systems Week 5/6 Character representation ACII and code pages UNICODE.
Agenda ASCII char N int Character class char N String Bitwise operators homework.
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.
Lis508 lecture 2: characters to textual documents Thomas Krichel
The Information School of the University of Washington Oct 13fit digital1 Digital Representation INFO/CSE 100, Fall 2006 Fluency in Information Technology.
Representation of Characters
The Information School of the University of Washington 15-Oct-2004cse digital1 Digital Representation INFO/CSE 100, Spring 2005 Fluency in Information.
1 Problem Solving using Computers “Data....Representation, and Storage.
M204 - Data Representation
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.
2. Data Formats. Introduction Examples pp Real World Data Computer Data Input device Dear Mom: Keyboard … Digital camera …
17-Mar-16 Characters and Strings. 2 Characters In Java, a char is a primitive type that can hold one single character A character can be: A letter or.
CS 101 – Sept. 11 Review linear vs. non-linear representations. Text representation Compression techniques Image representation –grayscale –File size issues.
Computers: Information Technology in Perspective By Long and Long Copyright 2002 Prentice Hall, Inc. Encoding J. Holvikivi 2012.
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.
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
Binary Representation in Text
Binary Representation in Text
Lesson Objectives Aims You should be able to:
Binary Numbers and ASCII and EDCDIC
Data Transfer ASCII FILES.
Representing Information as bit patterns
Phnom Penh International University (PPIU)
Data Encoding Characters.
TOPICS Information Representation Characters and Images
Representing Characters
EEL 3705 / 3705L Digital Logic Design
Presenting information as bit patterns
COMS 161 Introduction to Computing
COMS 161 Introduction to Computing
Digital Encodings.
Tutorial 1.3 Using Element Attributes
Learning Intention I will learn how computers store text.
Text Representation ASCII Collating Sequence
C Programming Language
ASCII LP1.
ASCII and Unicode.
Introduction to UNICODE (ஒருங்குறி)
Presentation transcript:

SEC (1.4) Representing Information as bit patterns

Representing Text: The American National Standards Institute (ANSI) adapted the American Standard Code for Information Interchange (ASCII) This code uses 7 bits to represent the alphabets (a-z & A-Z) and numbers from 0 to 9 and punctuation symbols. Ex: olleH

Unicode: This code uses 16 bits represents each symbols. Unicode consists of different bit patterns enough to allow text written in such languages A file containing a long sequence of symbols encoded using ASCII or Unicode is often called a text file

The difference between word processors and text file as follows: Word processorsText file Use word applicationUse text editor 1 Contains numbers proprietary codes representing changes in fonts, alignment information, …etc Contains only character-by- character encoding of text 2 Use proprietary code rather than the ASCII or Unicode Use ASCII or Unicode 3