Data Transfer ASCII FILES.

Slides:



Advertisements
Similar presentations
Lecture 7. Binary Codes Gray Code(s)  Unweighted code  Code values for successive decimal digits differ in exactly one bit.  Example: 2-bit Gray Code.
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.
Processing Data.
Data Representation (in computer system) Computer Fundamental CIM2460 Bavy LI.
ASCII & Gray Codes.
Data Storage. SIGN AND MAGNITUDE Storing and representing numbers.
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:
2.1.4 BINARY ASCII CHARACTER SETS A451: COMPUTER SYSTEMS AND PROGRAMMING.
1.6 Signed Binary Numbers.
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.
Numbers and Number Systems
Coding System Text Representation ASCII Collating Sequence.
Aloha Aloha What you see: What the computer sees: binary number columns binary number columns
Bits, Data types, and Operations: Chapter 2 COMP 2610 Dr. James Money COMP
Binary Codes Computers and other digital systems "work" with binary numbers. I/P & O/P is usually done using decimal numbers, alphabetics, special symbols.
Data Representation S2. This unit covers how the computer represents- Numbers Text Graphics Control.
Copyright © 2003 by Prentice Hall Module 5 Central Processing Unit 1. Binary representation of data 2. The components of the CPU 3. CPU and Instruction.
Binary Arithmetic & Data representation
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
Summer 2012ETE Digital Electronics1 Binary Arithmetic of Signed Binary Numbers.
Section 3.1: Number Representation Practice HW (not to hand in) From Barr Text p. 185 # 1-5.
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.
GCSE ICT Storing data - Internal memory, backing storage, and measuring memory.
Representation of Characters
Binary 101 Gads Hill School. Aim To strengthen understanding of how computers use the binary number system to store information.
Information Coding Schemes Group Member : Yvonne Tiffany Jurifah bt Junaidi Clara Jane George.
HNC COMPUTING - COMPUTER PLATFORMS 1 Micro Teach Binary.
Lecture 1.2 (Chapter 1) Prepared by Dr. Lamiaa Elshenawy
Understanding Computers
Data Representation. In our everyday lives, we communicate with each other using analogue data. This data takes the form of: Sound Images Letters Numbers.
GCSE ICT Data Transfer. Data transfer Users often need to transfer data between software packages or computers. Until relatively recently this was difficult.
11001 / 101, / ) Perform subtraction on the given unsigned binary numbers using the 2's complement of the subtrahend. Where the result.
1.4 Representation of data in computer systems Character.
COMPUTER ORGANIZATION 4 TH LECTURE. ASCII Code  ASCII ( American Standard Code for Information Interchange).  Input and output devices that communicate.
Nat 4/5 Computing Science Data Representation Lesson 3: Storing Text
Nat 4/5 Computing Science Data Representation Lesson 3: Storing Text
Understanding binary Understanding Computers.
Unit 2.6 Data Representation Lesson 2 ‒ Characters
CSCI 198: Lecture 4: Data Representation
11001 / 101 , / ) Perform subtraction on the given unsigned binary numbers using the 2's complement of the subtrahend. Where the.
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.
What are Computers? G Use this tutorial alongside the numbers coded in your workbook and answer the related questions in each section.
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”?
Representing Information as bit patterns
Data Encoding Characters.
TOPICS Information Representation Characters and Images
Presenting information as bit patterns
C1 Number systems.
Digital Encodings.
Table 1.1 Powers of Two.
Learning Intention I will learn how computers store text.
ECE 331 – Digital System Design
Option: Data Representation
Text Representation ASCII Collating Sequence
FIGURE 1-1 Examples of Voltage Ranges and Waveforms for Binary Signals
Option: Data Representation
Computer Architecture CST 250
C Programming Language
ASCII LP1.
ASCII and Unicode.
Presentation transcript:

Data Transfer ASCII FILES

ASCII stands for….. American Standard Code for Information Interchange It is a code for representing characters as binary codes. All computers can store data as ASCII code and a file used to hold the code is called an ASCII file.

The following table shows the 8 bit binary code used for the alphabet

ASCII code A 0100 0001 B 0100 0010 C 0100 0011 D 0100 0100 E 0100 0101 F 0100 0110 G 0100 0111 H 0100 1000 I 0100 1001 J 0100 1010 K 0100 1011 L 0100 1100 M 0100 1101 N 0100 1110 O 0100 1111 P 0101 0000 Q 0101 0001 R 0101 0010 S 0101 0011 T 0101 0100 U 0101 0101 V 0101 0110 W 0101 0111 X 0101 1000 Y 0101 1001 Z 0101 1010

Other ASCII codes are used for….. The digits 1,2,3 etc… Commas Arithmetic signs * / + - etc…. Spaces = 0100 0000

For Example…… HELLO! 0100 1000 H 0100 0101 E 0100 1100 L 0100 1111 O 0010 0001 !

Another Example…. TEACHER 0101 0100 T 0100 0101 E 0100 0001 A