Revision – part one. Starter – keywords... Revision list Data Representation Units of data.

Slides:



Advertisements
Similar presentations
Chapter 4: Representation of data in computer systems
Advertisements

Base 10 Denary Decimal
Technology ICT Option: Data Representation. Data Representation In our everyday lives, we communicate with each other using analogue data. This data takes.
Computer Systems Nat 4/5 Data Representation Lesson 4: Storing Graphics.
Chapter 2 Digital data Ola A. Younis. Elements of digital media Symbols : representation for something else. Example: a group of letters often serve as.
Capturing and optimising digital images for research Gilles Couzin.
Lesson Objectives Explain the representation of an image as a series of pixels represented in binary Explain the need for meta data to be included in the.
Bitmapped Images 27 th November 2014 With Mrs
Revision tip: Focus on the things you find difficult first.
Task 2 Create Your Competition Entry Guidance Notes.
Higher Computing Data Representation.
Computer Systems Nat 4.5 Computing Science Data Representation Lesson 4: Storing Graphics EXTENSION.
GCSE Computing#BristolMet Session Objectives#9 MUST identify the data needed for a computer to display an image correctly (metadata) SHOULD describe the.
© GCSE Computing Candidates should be able to:  explain the representation of an image as a series of pixels represented in binary  explain the need.
Digital Media Dr. Jim Rowan ITEC Monday, August 27.
Digital Media Dr. Jim Rowan ITEC Monday, August 27.
Computers Inside and Out
Files and Folders What’s the difference?. What are files ? Collections of digital information created on or for computers click the mouse or press the.
Data Representation The method of data representation in a computer system depends upon the type of data which is being used. Three types of data are considered.
Image formats. Basic terminologies… Pixels: Pixels are the building blocks of every digital image. a pixel is a single point in a graphic image. Resolutions:
File Sizes & Storage Requirements.  An image has a width in pixels and a height in pixels  Start by calculating the number of pixels all up  640 x.
Marr CollegeHigher ComputingSlide 1 Higher Computing: COMPUTER SYSTEMS Part 1: Data Representation – 6 hours.
Representation of Images You need to know: (k) explain the representation of an image as a series of pixels represented in binary (l) explain the need.
CS1033 Pixel and Resolution
Data Representation The storage of Text Numbers Graphics.
Computer Systems Nat 4.5 Computing Science Data Representation Lesson 4: Representing and Storing Graphics EXTENSION.
Networking for Home and Small Businesses –.  Explain the binary representation of data.
Storage of Data Instructions and data are held in main memory which is divided into millions of addressable storage.
COMPUTER GRAPHICS. Once you scan an image or take a picture with your digital camera, it becomes digitized. Made up of hundreds of thousands of pixels.
2.1.4 Data Representation Units.
BINARY Toby Wilson. LEARNING OBJECTIVES  Be able to convert binary to denary  Be able to convert denary into binary  Be able to explain how computers.
Lesson Aim (Data representation) To be able to: Convert B/D & D/B Convert D/H & H/D Convert H/B & B/H Perform simple binary arithmetic Represent a number.
Advanced AV Production Practicum Math for The Audio Video Professional Calculating Single File Sizes Copyright © Texas Education Agency, All rights.
Representation of Data in Computer Systems
2.1.1.a: Define a computer system b: Describe the importance of computer systems in the modern world.
Information Systems Design and Development Media Types Computing Science.
 Computers are 2-state devices › Pulse – No pulse › On – Off  Represented by › 1 – 0  BINARY.
CC111 Lec#2 The System Unit The System Unit: Processing and Memory Lecture 2 Binary System.
Data Representation. In our everyday lives, we communicate with each other using analogue data. This data takes the form of: Sound Images Letters Numbers.
**Input devices** 1- you communicate with the computer via an input device. 2- Input devices allow us to send information to the CPU to tell the computer.
Technique Worked Example – Data Representation. Overview -What are the possible subgoals for file size calculation problems? -Exploring an example of.
© OCR 2016 Unit 2.6 Data Representation Lesson 1 ‒ Numbers.
Storage Requirements Computer Systems.
Text and Images Key Revision Points.
Unit 2.6 Data Representation Lesson 3 ‒ Images
Data Representation: Sound
Unit 2.6 Data Representation Lesson 1 ‒ Numbers
Image and Sound Representation
Storing Graphics Nat 5 Data Representation Lesson 4a: Storing Graphics
GCSE COMPUTER SCIENCE Data 2.2 Characters and Images.
Images Data Representation.
Data Representation Images.
Data representation – Sound.
Computer Systems Nat 4/5 Data Representation Lesson 4:
Pixel, Resolution, Image Size
Binary 4 File Sizes.
Intermediate 2 Computing
Learning Intention I will learn how a computer stores graphics.
Lesson Outcomes Be able to identify differentiate between types of error in programs Be able to interpret error messages and identify, locate.
Data Representation Numbers
Data Representation Keywords Sound
Bitmap, Vector, Pixels, Resolution, Metadata.
Summer Term Year 10 Slides
Computer Systems Nat 4.5 Computing Science Data Representation
Ms Jennifer - Senior 4 - Data Representation Introduction
Option: Data Representation
Computer Systems Nat 4/5 Data Representation Lesson 4:
Option: Data Representation
WJEC GCSE Computer Science
Presentation transcript:

Revision – part one

Starter – keywords...

Revision list Data Representation Units of data

Lets start with the basics… Bits in a byte = Historically: Why do we measure things as a byte? Name of this system? Why did the system have to change? What’s a better system?

Lets start with the basics… Bits in a byte = Number of bits in a 10 megabyte = Number megabytes in 2 gigabytes = Number of megabytes in 2 terabytes = (Most importantly – how do you work it out?)

Lets start with the basics… How would you measure: a)A full length HD movie b)ASCII characters c)Mp3 music file d)Typical hard disk in a modern laptop (Most importantly – how do you work it out?)

Quick one… Going from analogue to digital is…

Lets start with the basics…images A picture is made of … The number of these affect the … This is the amount of … in a …. Each of these … has an amount of space allocated to it. This is the … The size of the … affects the amount of … the pixel can hold An image with a 2 bit … can have … colours An image with an 8 bit … can have … colours

Lets start with the basics…sound A sound is made of … The number of these affect the … Its measured in … This is the amount of … in a …. Each of these … has an amount of space allocated to it. This is the … The size of the … affects the amount of … the …

Work out… Work out file size: ((height x resolution) x (width x resolution)) x colour depth 3 inch by 4 inch image 300 pixels per inch (ppi) 8 bit colour depth

So… What affects the size of an image file

Add these bad boys…

Data types…

Error handling Three main types of error when programming errorWhat causes it

3 debugging tools

For a … error, you might use a …

Example 1 nextnumber1number2number3 for next in range(1,10,2): number1 = next number2 = next * next number3 = next / 2 Are you happy with this function?

Example 1 nextnumber1number2number for next in range(1,10,2): number1 = next number2 = next * next number3 = next / 2

Example 2 A = 3 B = 3 For C = 1 to 4 B = B*C A = A+C Next C CAB

Example 2 (Psueudocode) A = 3 B = 3 For C = 1 to 4 B = B*C A = A+C Next C CAB

Example 3 Variable LineABComment Pseudocode A=4 B=7 1Input A 2Input B 3If A=B Then 4 B = 2 5Else 6 While B>A 7 B=B-A 8 End While 9 A = B End IF

Example 3 Variable LineABComment False: goto True: continue Pseudocode A=4 B=7 1Input A 2Input B 3If A=B Then 4 B = 2 5Else 6 While B>A 7 B=B-A 8 End While 9 A = B End IF

Bugs can be hard to find...