2. Data Formats Chapt. 3.

Slides:



Advertisements
Similar presentations
TK 2123 COMPUTER ORGANISATION & ARCHITECTURE Lecture 4: Data in The Computer Dr. Masri Ayob.
Advertisements

Data Representation (in computer system) Computer Fundamental CIM2460 Bavy LI.
Number Systems & Logic Gates Day 1
© BYU 02 NUMBERS Page 1 ECEn 224 Binary Number Systems and Codes.
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
ITEC 1011 Introduction to Information Technologies 2. Data Formats Chapt. 3.
9/15/09 - L3 CodesCopyright Joanne DeGroat, ECE, OSU1 Codes.
1 JCM 106 Computer Application for Journalism Lecture 1 – Introduction to Computing.
CCE-EDUSAT SESSION FOR COMPUTER FUNDAMENTALS Faculty: Anita Kanavalli Department of CSE M S Ramaiah Institute of Technology Bangalore E mail-
©Brooks/Cole, 2003 Chapter 2 Data Representation.
Sem 1 v2 Chapter 14: Layer 6 - The Presentation layer.
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.
Numbers and Number Systems
Data Usually computing systems are complex devices, dealing with a vast array of information categories.
Lecture 2 Character Codes and Low-Structure Text Document Formats.
Bits & Bytes: How Computers Represent Data
Computers Organization & Assembly Language
Institute of Technology Sligo - Dept of Computing Sem 1 Chapter 14: Layer 6 - The Presentation layer.
Data Representation S2. This unit covers how the computer represents- Numbers Text Graphics Control.
1 Inside “The Box”. 2 CRT Display Keyboard Mouse “The Box” CD-ROM Drive Floppy Disk Drive Computing Devices – Old and New.
Chapter 2 Computer Hardware
Binary Arithmetic & Data representation
Lec 3: Data Representation Computer Organization & Assembly Language Programming.
1 INFORMATION IN DIGITAL DEVICES. 2 Digital Devices Most computers today are composed of digital devices. –Process electrical signals. –Can only have.
CS151 Introduction to Digital Design
Compsci Today’s topics l Binary Numbers  Brookshear l Slides from Prof. Marti Hearst of UC Berkeley SIMS l Upcoming  Networks Interactive.
Chapter 1 Data Storage © 2007 Pearson Addison-Wesley. All rights reserved.
Data Representation, Number Systems and Base Conversions
Chap 14 Presentation Layer Andres, Wen-Yuan Liao Department of Computer Science and Engineering De Lin Institute of Technology
Data Representation. What is data? Data is information that has been translated into a form that is more convenient to process As information take different.
MULTIMEDIA Multimedia is the field concerned with the computer- controlled integration of text, graphics, drawings, still and moving images (Video), animation,
Chapter 1 Data Storage © 2007 Pearson Addison-Wesley. All rights reserved.
M204 - Data Representation
ECE – III SEM BINARY CODES
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.
Layer 6 Presentation Layer. Overview Now that you have learned about Layer 5 of the OSI model, it is time to look at Layer 6, the presentation layer.
2. Data Formats. Introduction Examples pp Real World Data Computer Data Input device Dear Mom: Keyboard … Digital camera …
Software Design and Development Storing Data Part 2 Text, sound and video Computing Science.
DATA Unit 2 Topic 2. Different Types of Data ASCII code: ASCII - The American Standard Code for Information Interchange is a standard seven-bit code that.
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.
Chapter 1: Data Storage.
Text and Images Key Revision Points.
Standard Input Devices
Binary Representation in Text
Binary Representation in Text
Computer Science: An Overview Eleventh Edition
4th Edition, Irv Englander
Chapter 3 Data Representation Text Characters
NUMBER SYSTEMS.
Lec 3: Data Representation
INFS 211: Introduction to Information Technology
ITEC 1000 “Introduction to Information Technology”
Bits & Bytes How Computers Represent Data
Representing Information as bit patterns
Phnom Penh International University (PPIU)
TOPICS Information Representation Characters and Images
CHAPTER 2 - DIGITAL DATA REPRESENTATION AND NUMBERING SYSTEMS
Ch2: Data Representation
Computer Data Types Basics of Computing.
Data Representation Conversion 05/12/2018.
Chapter 2 Data Representation.
Number Systems Lecture 2.
Chapter 1 Number System RGGP, Narwana.
Learning Intention I will learn how computers store text.
ASCII and Unicode.
Presentation transcript:

2. Data Formats Chapt. 3

Introduction Examples Real World Data Computer Data Input device Dear Mom: Keyboard 10110010… Digital camera 10110010… pp. 59.-61

Format must be appropriate The internal representation must be appropriate for the type of processing to take place (e.g., text, images, sound)

Rules/Conventions Proprietary formats Standards Unique to a product or company E.g., Microsoft Word, Corel Word Perfect, IBM Lotus Notes Standards Evolve two ways: Proprietary formats become de facto standards (e.g., Adobe PostScript, Apple Quick Time) Committee is struck to solve a problem (Motion Pictures Experts Group, MPEG) pp. 61-62

Standards Organizations ISO – International Standards Organization CSA – Canadian Standards Association ANSI – American National Standards Institute IEEE – Institute for Electrical and Electronics Engineers Etc.

Examples of Standards Type of Data Standards Alphanumeric ASCII, EBCDIC, Unicode Image JPEG, GIF, PCX, TIFF Motion picture MPEG-2, Quick Time Sound Sound Blaster, WAV, AU Outline graphics/fonts PostScript, TrueType, PDF

Why Standards? Standard are “arbitrary” They exist because they are Convenient Efficient Flexible Appropriate Etc.

Alphanumeric Data Problem: Distinguishing between the number 123 (one hundred and twenty-three) and the characters “123” (one, two, three) Four standards for representing letters (alpha) and numbers BCD – Binary-coded decimal ASCII – American standard code for information interchange EBCDIC – Extended binary-coded decimal interchange code Unicode pp. 63-69

Standard Alphanumeric Formats BCD ASCII EBCDIC Unicode Next 2 slides

Binary-Coded Decimal (BCD) Four bits per digit Digit Bit pattern 0000 1 0001 2 0010 3 0011 4 0100 5 0101 6 0110 7 0111 8 1000 9 1001 Note: the following bit patterns are not used: 1010 1011 1100 1101 1110 1111

Example 709310 = ? (in BCD) 7 0 9 3 0111 0000 1001 0011

Standard Alphanumeric Formats BCD ASCII EBCDIC Unicode Next 22 slides

The Problem Representing text strings, such as “Hello, world”, in a computer

Codes and Characters Each character is coded as a byte Most common coding system is ASCII (Pronounced ass-key) ASCII = American National Standard Code for Information Interchange Defined in ANSI document X3.4-1977

ASCII Features 7-bit code 8th bit is unused (or used for a parity bit) 27 = 128 codes Two general types of codes: 95 are “Graphic” codes (displayable on a console) 33 are “Control” codes (control features of the console or communications channel)

ASCII Chart

Most significant bit Least significant bit

e.g., ‘a’ = 1100001

95 Graphic codes

33 Control codes

Alphabetic codes

Numeric codes

Punctuation, etc.

“Hello, world” Example = Binary 01001000 01100101 01101100 01101111 00101100 00100000 01110111 01100111 01110010 01100100 Hexadecimal 48 65 6C 6F 2C 20 77 67 72 64 Decimal 101 108 111 44 32 119 103 114 100 H e l o , w r d

Common Control Codes CR 0D carriage return LF 0A line feed HT 09 horizontal tab DEL 7F delete NULL 00 null Hexadecimal code

Terminology Learn the names of the special symbols [ ] brackets { } braces ( ) parentheses @ commercial ‘at’ sign & ampersand ~ tilde

Escape Sequences Extend the capability of the ASCII code set For controlling terminals and formatting output Defined by ANSI in documents X3.41-1974 and X3.64-1977 The escape code is ESC = 1B16 An escape sequence begins with two codes: ESC [ 1B16 5B16

Examples Erase display: ESC [ 2 J Erase line: ESC [ K

Standard Alphanumeric Formats BCD ASCII EBCDIC Unicode Next 1 slides

EBCDIC Extended BCD Interchange Code (pronounced ebb’-se-dick) 8-bit code Developed by IBM Rarely used today IBM mainframes only

Standard Alphanumeric Formats BCD ASCII EBCDIC Unicode Next 2 slides

Unicode 16-bit standard Developed by a consortia Intended to supercede older 7- and 8-bit codes

Unicode Version 2.1 1998 Improves on version 2.0 Includes the Euro sign (20AC16 = ) From the standard: …contains 38,887 distinct coded characters derived from the supported scripts. These characters cover the principal written languages of the Americas, Europe, the Middle East, Africa, India, Asia, and Pacifica. http://www.unicode.org

Keyboard Input Key (“scan”) codes are converted to ASCII ASCII code sent to host computer Received by the host as a “stream” of data Stored in buffer Processed Etc. pp. 69

Shift Key inhibits bit 5 in the ASCII code Key(s) ASCII code 6 5 4 3 2 1 0 Character 1 1 0 0 0 0 1 1 0 0 0 0 0 1 a A a Shift a

Control Key inhibits bits 5 & 6 in the ASCII code Key(s) ASCII code 6 5 4 3 2 1 0 Character 1 1 0 0 0 1 1 0 0 0 0 0 1 1 c ETX c Ctrl c Control code

Other Input OCR – optical character recognition Bar code readers Voice/audio input Punched cards Images / objects Pointing devices pp. 69-86

OCR Hello, world Optical scan 10110110… Page of text Computer file

Other Input OCR – optical character recognition Bar code readers Voice/audio input Punched cards Images / objects Pointing devices pp. 69-86

Bar Codes An automatic identification (Auto ID) technology that streamlines identification and data collection See http://www.digital.net/barcoder/barcode.html

Other Input OCR – optical character recognition Bar code readers Voice/audio input Punched cards Images / objects Pointing devices pp. 69-86

Voice/audio Input Input device: microphone Audio input is “digitized” and stored Processed in two ways As is (no recognition) Recognized and converted to alphanumeric data (ASCII) Digitize 10110010…

Other Input OCR – optical character recognition Bar code readers Voice/audio input Punched cards Images / objects Pointing devices pp. 69-86

Punched Cards Invented by Herman Hollerith (founder of IBM) Each card holds 80 characters

Other Input OCR – optical character recognition Bar code readers Voice/audio input Punched cards Images / objects Pointing devices pp. 69-86

Images Typically images are pictures that are optically scanned and saved as a “bit map” or in some other format Many formats gif, jpeg, …

Typical “Save As” Dialog

Objects Images made of geometrically definable shapes Offer efficiency, flexibility, small size, etc.

Other Input OCR – optical character recognition Bar code readers Voice/audio input Punched cards Images / objects Pointing devices pp. 69-86

Pointing Devices Originally used for specifying coordinates (x, y) for graphical input Today used as general purpose device for “graphical user interfaces” (GUIs)

Thank you