Chapter 4: Representation of data in computer systems

Slides:



Advertisements
Similar presentations
Chapter 4: Representation of data in computer systems: Sound OCR Computing for GCSE © Hodder Education 2011.
Advertisements

1 Chapter 2 The Digital World. 2 Digital Data Representation.
assumes basic arithmetic
Storage Devices and Media
Backing Storage Devices.  We are learning to:  Make comparisons between different backing storage devices using their features.  Identify appropriate.
Digital Data Patrice Koehl Computer Science UC Davis.
CREATED BY, MS. JENNIFER DUKE BITS, BYTES, AND UNITS OF MEASUREMENT.
Communications Technology 2104 Mercedes Lahey. Bit 1. bit=From a shortening of the words “binary digit” 2. the basic unit of information for computers.
Computer Logic Distinction between analogue and discrete processes and quantities. Conversion of analogue quantities to digital form. Using sampling techniques.
Data and Program Representation
Computer Systems. Basic Components Auxiliary Storage OutputProcessor Main Memory Input.
Computer Systems Chapter 1 Pages Hardware-physical pieces Key hardware components in a computer system: The physical parts. – Central processing.
Lecture 4: Secondary Storage. I. Secondary Storage (Hard Drives) Secondary Storage Secondary Storage: holds data and programs for future use by providing.
Data Representation A series of eight bits is called a byte. A byte can be used to represent a number or a character. As you’ll see in the following table,
Discovering Computers Fundamentals, 2010 Edition Living in a Digital World Chapter Three.
Hardware Data Storage.
Data Representation and Storage Lecture 5. Representations A number value can be represented in many ways: 5 Five V IIIII Cinq Hold up my hand.
Advanced Diploma 1 Backing Storage. Advanced Diploma 2 Aims Understand how data is stored Be able to use the binary system to represent ASCII characters.
OBJECTIVES  Explain why a computer represents data in the form of binary  Explain the terms related to data storage: bit, byte, character, word  Calculate.
Getting to know Storage Media 1.Stores information 2.Retrieve information for later use.
Inside your computer. Hardware Review Motherboard Processor / CPU Bus Bios chip Memory Hard drive Video Card Sound Card Monitor/printer Ports.
Inside your computer. Hardware Motherboard Processor / CPU Bus Bios chip Memory Hard drive Video Card Sound Card Monitor/printer Ports.
Computer Systems Nat 4/5 Computing Science Data Representation Lesson 2: Floating Point Representation.
1 3 Computing System Fundamentals 3.2 Computer Architecture.
Unit 2—Part A Computer Memory Computer Technology (S1 Obj 2-3)
Do it now activity Can you work out what the missing symbols are and work out the order they should be in if the table shows smallest to largest KB kilobyte.
How We Measure Memory. Learning Goal Today we are going to learn how the computer stores information.
Networking for Home and Small Businesses –.  Explain the binary representation of data.
Computers - The Journey Inside continues…
Storage of Data Instructions and data are held in main memory which is divided into millions of addressable storage.
Thursday 8 th October, 2015 Information Technology Fundamentals of Hardware & Software.
How We Measure Memory. At the Bottom of things A piece of digital information is always stored as a sequence of binary states. What’s that mean you ask???
2.1.4 Data Representation Units.
Know what a computer is used for Understand the difference between hardware and software Be able to describe the way that data is stored in a computer.
Bits and Bytes. Overview  Bits - A binary decision  Byte - Most common unit of measurement for computer architectures (megabytes, mebibytes, gigabytes,
Units Representation of Data in Computer Systems.
HNC COMPUTING - COMPUTER PLATFORMS 1 Computer Platforms Week 2 Backing Storage.
Binary a. express numbers in binary, binary-coded decimal (BCD), octal and hexadecimal;
Binary Numbers. Base 10 and Base 2  We normally work with numbers in base 10.  In base 10 we use the digits 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9.  Everything.
Bits & Bytes Why computers use binary. Analog Signals Analog signals : constantly changing values – Difficult to make precise.
CC111 Lec#2 The System Unit The System Unit: Processing and Memory Lecture 2 Binary System.
Numerical Representation Intro to Computer Science CS1510 Dr. Sarah Diesburg 1.
© OCR 2016 Unit 2.6 Data Representation Lesson 1 ‒ Numbers.
GCSE COMPUTER SCIENCE Topic 3 - Data 3.3 Data Storage and Compression.
Computer basics.
Data Representation N4/N5.
Data Representation Lesson 1 Speed and Storage Units KS3 COMPUTING
Storage Hardware This icon indicates the slide contains activities created in Flash. These activities are not editable. For more detailed instructions,
Computer Memory Digital Literacy.
Numerical Representation
Memory Parts of a computer
Unit 2.6 Data Representation Lesson 1 ‒ Numbers
3 - STORAGE: DATA CAPACITY CALCULATIONS
Unit 2 Computer Memory Computer Technology (S1 Obj 2-3)
COMPUTER MEMORY & DATA STORAGE
COMPUTER MEMORY & DATA STORAGE
Data Representation Numbers
Representation of Data in Computer Systems
How do computers work? Storage.
Numerical Representation
Summer Term Year 10 Slides
Bits, Bytes, and Storage.
Chapter 4: Representing sound
Numerical Representation
Bits and Bytes Key Revision Points.
Why computers use binary
Binary System.
AS Level ICT Selection and use of storage requirements, media, and devices: storage and storage capacity Unit 1 Topic a - Selection and use of storage.
GCSE COMPUTER SCIENCE Topic 3 - Data 3.8 Data Storage.
Numerical Representation
Presentation transcript:

Chapter 4: Representation of data in computer systems OCR Computing for GCSE © Hodder Education 2011

Representation of data in computer systems Units Number Character Images Sound Instructions OCR Computing for GCSE © Hodder Education 2011

OCR Computing for GCSE © Hodder Education 2011 Units Computers work with binary data Processors are made of millions of switches. These can be on or off to represent data. Binary data is two-state Yes or no True or false 0 or 1 All real-world data must be converted to binary before a computer can handle it. OCR Computing for GCSE © Hodder Education 2011

OCR Computing for GCSE © Hodder Education 2011 Units You can represent most facts as a set of 0s and 1s Can you buy me a present? 0=No, 1=Yes If you have two 0s and 1s you can say more: 00=No, 01=Yes, 10=if it's cheap, 11=if you get me something too With enough 0s and 1s you can say most things. OCR Computing for GCSE © Hodder Education 2011

OCR Computing for GCSE © Hodder Education 2011 Units The smallest unit of binary data is a BIT (BInary digiT) It has two states, 0 and 1. To do anything useful, you need lots of bits. Most computers group bits together to make it easier to store them. Usually memory locations hold 8 bits. The amount stored in one location is called a byte. This is sometimes called an octet. OCR Computing for GCSE © Hodder Education 2011

OCR Computing for GCSE © Hodder Education 2011 Units Sometimes it is useful to address half a byte. Maybe you don't need a whole byte to store something. Half a byte is called a nibble (sometimes spelt nybble). For most serious work, you need much larger stores of data. As computers get more powerful and we use them more, we need to store more data. OCR Computing for GCSE © Hodder Education 2011

OCR Computing for GCSE © Hodder Education 2011 Units – Kilobyte Kilobyte (kB) this is 1024 bytes it is not 1000 bytes because computers work with binary numbers, so it is 210 which is the nearest power of two to 1000. These days, a kilobyte of data is not much, so we often use much bigger groups. OCR Computing for GCSE © Hodder Education 2011

OCR Computing for GCSE © Hodder Education 2011 Units – Megabyte Megabyte (MB) this is 1024 kilobytes or 220 (1048576) bytes. 1 MB is enough data for a 1024 × 1024 pixel bitmap image with 256 colours 1 minute of 128 kbit/s MP3 compressed music 6 seconds of uncompressed CD audio a typical book. OCR Computing for GCSE © Hodder Education 2011

OCR Computing for GCSE © Hodder Education 2011 Units – Gigabyte Gigabyte (GB) this is 1024 megabytes or 230 bytes. 1 GB is enough data for one hour of standard video seven minutes of high-definition video 114 minutes of uncompressed CD-quality audio A DVD-R can hold 4.7 GB A dual-layered Blu-ray® disk can hold 50 GB. OCR Computing for GCSE © Hodder Education 2011

OCR Computing for GCSE © Hodder Education 2011 Units – Terabyte Terabyte (TB) this is 1024 gigabytes or 240 bytes. Yahoo groups has over 40 TB of data. Wikipedia has over 6 TB of data. As time goes on, we will get used to even larger units of data. OCR Computing for GCSE © Hodder Education 2011