Data vs. Information OUTPUTOUTPUT Information Data PROCESSPROCESS INPUTINPUT There are 10 types of people in this world those who read binary and those.

Slides:



Advertisements
Similar presentations
Technology ICT Option: Data Representation. Data Representation In our everyday lives, we communicate with each other using analogue data. This data takes.
Advertisements

1 Chapter 2 The Digital World. 2 Digital Data Representation.
Chapter 2 Digital data Ola A. Younis. Elements of digital media Symbols : representation for something else. Example: a group of letters often serve as.
How Computers Represent Numbers Friday, Week 5. Binary Code A series of 1’s and 0’s Place value is in powers of 2.
Connecting with Computer Science, 2e
Processing Data.
Information Processing Session 5B Binary Arithmetic Slide
Chapter 4: The Building Blocks: Binary Numbers, Boolean Logic, and Gates Invitation to Computer Science, C++ Version, Fourth Edition.
Data Representation in Computers
Data Representation (in computer system) Computer Fundamental CIM2460 Bavy LI.
1 A Balanced Introduction to Computer Science, 2/E David Reed, Creighton University ©2008 Pearson Prentice Hall ISBN Chapter 12 Data.
SIMS-201 Representing Information in Binary. 2  Overview Chapter 3: The search for an appropriate code Bits as building blocks of information Binary.
IT-101 Section 001 Lecture #4 Introduction to Information Technology.
Binary Numbers.
Bits and Bytes.
Representing Information in Binary (Continued)
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 Survey of Computer Science CSCI 110, Spring 2011 Lecture 16 Digital Circuits, binary Numbers.
Data vs. Information OUTPUTOUTPUT Information Data PROCESSPROCESS INPUTINPUT There are 10 types of people in this world those who read binary and those.
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 S2. This unit covers how the computer represents- Numbers Text Graphics Control.
Chapter 2 Computer Hardware
Foundations of Computer Science Computing …it is all about Data Representation, Storage, Processing, and Communication of Data 10/4/20151CS 112 – Foundations.
Data Types and Representation CS French Chapter 6 + Chapter 7 – Number Bases.
Data Representation CS280 – 09/13/05. Binary (from a Hacker’s dictionary) A base-2 numbering system with only two digits, 0 and 1, which is perfectly.
EX_01.1/46 Numeric Systems. EX_01.2/46 Overview Numeric systems – general, Binary numbers, Octal numbers, Hexadecimal system, Data units, ASCII code,
Binary Code.
INTRODUCTION TO COMPUTING LECTURE#04. TRANSFORMING DATA INTO INFORMATION Understands only two states either On or Off  Makes different patterns of 0s.
Logical Circuit Design Week 2,3: Fundamental Concepts in Computer Science, Binary Logic, Number Systems Mentor Hamiti, MSc Office: ,
Computer Hardware Basic Computer Concepts Data Representation and Digital Electronics  Data Representation  makes it possible to convert letters, sounds,
THE BINARY NUMBER SYSTEM “There are only 10 types of people in this world: Those who understand BINARY and those who do not.”
CS 111 – Sept. 1 Intro to data representation Binary numbers –Convert binary  decimal –Convert decimal  binary Text –ASCII and Unicode Commitment: –For.
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.
Technology in Action Chapter 6 Behind the Scenes: A Closer Look at System Hardware.
Data Representation. How is data stored on a computer? Registers, main memory, etc. consists of grids of transistors Transistors are in one of two states,
Circuits & Switches. Electricity Formed when an excess of positive or negative particles that are parts of atoms attempts to balance itself=electrical.
Binary 101 Gads Hill School. Aim To strengthen understanding of how computers use the binary number system to store information.
What is Binary Code? Computers use a special code of their own to express the digital information they process. It's called the binary code because it.
09/06/ Data Representation ASCII, Binary Denary Conversion, Integer & Boolean data types.
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
Data Representation. In our everyday lives, we communicate with each other using analogue data. This data takes the form of: Sound Images Letters Numbers.
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.
Computers: Information Technology in Perspective By Long and Long Copyright 2002 Prentice Hall, Inc. Encoding J. Holvikivi 2012.
Understanding Binary Understanding Computers. Understanding Computers L3 – Understanding Binary Learning Objectives All will Understand why all data is.
1.4 Representation of data in computer systems Character.
DATA REPRESENTATION - TEXT
Binary Representation in Text
Binary Representation in Text
Data Representation.
Understanding binary Understanding Computers.
Invitation to Computer Science, C++ Version, Fourth Edition
Introduction to Computers
Phnom Penh International University (PPIU)
Folders out, planners out…
Representing Characters
Ch2: Data Representation
The Building Blocks: Binary Numbers, Boolean Logic, and Gates
Presenting information as bit patterns
COMS 161 Introduction to Computing
Plan Attendance Files Posted on Campus Cruiser Homework Reminder
How Computers Store Data
Chapter Four Data Representation in Computers By Bezawit E.
Learning Intention I will learn how computers store text.
Option: Data Representation
Option: Data Representation
Chapter 3 - Binary Numbering System
Lecture 36 – Unit 6 – Under the Hood Binary Encoding – Part 2
CHAPTER 69 NUMBER SYSTEMS AND CODES
Presentation transcript:

Data vs. Information OUTPUTOUTPUT Information Data PROCESSPROCESS INPUTINPUT There are 10 types of people in this world those who read binary and those who don’t

The representation of facts, concepts, or instructions in a formalized manner suitable for communication, interpretation, or processing by humans or by automatic means. Data - Is a representational system. Information is a term with many meanings depending on context, but is as a rule closely related to such concepts as meaning, knowledge, instruction, and communication, through the use of data. Information - Is a system of understanding.

Arabic Numbers Vs. Roman Numerals English Vs. Pig Latin English Vs. Klingon Examples of Representational Systems

Representational Data Set For the Klingon Language You will not have to be able to speak klingon for the midterm

Binary Code as the computers’ Representational System Using either 0 or 1 (or on/off) as the basic unit of data in computers

Using Binary Code to represent letters A bit is a single “1” or “0”. A byte is a group of 8 “1’s” and “0’s”. One character of text is equal to 1 byte.

Using Binary Code to Represent Letters cont’d

To convert text to binary it is encoded, character encoding consists of a code that pairs a set of natural language characters (such as an alphabet and basic integers) with a set of something else, such as numbers, light pulses, electrical pulses or 1’s and 0’s, to facilitate the storage and transmission of data. When a letter or number is typed on the keyboard is encoded using the ASCII character set. ASCII specifies a correspondence between digital bit patterns and the symbols/glyphs of a written language, thus allowing digital devices to communicate with each other and to process, store, and communicate character-oriented information. The ASCII character encoding, or a compatible extension is used on nearly all common computers, especially personal computers and workstations.

ASCII Chart

Extended ASCII Chart (8 bits) A set of codes that extends the basic ASCII set. The basic ASCII set uses 7 bits for each character, giving it a total of 128 unique symbols. The extended ASCII character set uses 8 bits, which gives it an additional 128 characters. The extra characters represent characters from foreign languages and special symbols for drawing pictures. Binary To Text Converter

Using Binary Code to represent numbers To Convert Decimal (Arabic) to Binary numbers use the following chart: Lets say for example you are given the following binary number, “1011” and are asked to convert that into a human readable or decimal number. Now you may be asking why you only see 4 bits and not the full 8 bits which you expect to see in a byte. If you are given a number such as “1011” that only has 4 bits and not the full 8 bits, simply assume that the rest of the number is all 0’s and that they appear in front of the number you were given. For example the number you were given was “1011”, then you would insert four 0’s in front of “1011” so you can just assume that the full binary number would be “ ”.

Using Binary Code to represent numbers cont’d To convert the binary number from “1011” to decimal we would enter the number into the chart Now to determine the number simply add up the values where the 1’s in our binary number appear. In binary you can consider 1 representing on and 0 representing off. So if the switch is on we count that number and the switch is off we don’t count that number. For example the 1’s in our example are occupying the 8ths place, the 2s place, and the 1s place, therefore we use the following equation to determine our number:

MICMIC Analog To Digital Digital To Analog SPKSPK Schematic for analog-to-digital and digital-to-analog conversion. Analog to digital Analog continuous both in time and amplitude Digital Stored at points of time to reproduce analog sound

Electronic Signals Analog Digital Analog signals are continuous wave forms in which variations in frequency and amplitude can be used to represent information. With digital signals, everything is described in two states: the circuit as either on or off. Generally, the on state is expressed or represented by the number 1 and the off state by the number 0. Original Edison Tin Foil Phonograph. Photo courtesy of U.S. Department of the Interior, National Park Service, Edison National Historic Site.

Making Waves Single-Bit Sampling ON OFF 11 00