HOW A COMPUTER PROCESSES DATA. What is hardware? Hardware is the electric, electronic and mechanical equipment that makes up a computer What is software?

Slides:



Advertisements
Similar presentations
INTRODUCTION OF COMPUTER
Advertisements

Basic Computer Components
Using Computers CS French Chapter 1.
Introduction to Computer Systems
Computing Components 01/26/11. Announcements & Reminders Programs 1 due Friday, 9/2/11 What is my late policy? Proxy Codes for Labs  You should be able.
Copyright © 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with C++ Early Objects Sixth Edition by Tony Gaddis, Judy Walters,
Chapter 1- Visual Basic Schneider1 Chapter 1 An Introduction to Computers and Visual Basic.
Computer Parts There are many parts that work together to make a computer work.
 Prof. Dr. M. H. Assal Introduction to Computer AS 26/10/2014.
CPU Describe the purpose of the CPU
Copyright © 2012 Pearson Education, Inc. Chapter 1: Introduction to Computers and Programming.
Alternate Version of STARTING OUT WITH C++ 4 th Edition Chapter 1 Introduction to Computers and Programming.
Chapter Introduction to Computers and Programming 1.
 Chasis / System cabinet  A plastic enclosure that contains most of the components of a computer (usually excluding the display, keyboard and mouse)
Processing Devices.
Computer Organization ANGELITO I. CUNANAN JR. 1. What is Computer?  An electronic device used for storing and processing data.  It is a machine that.
BLOCK DIAGRAM OF COMPUTER
Operating Systems What do you have left on your computer after you strip away all of the games and application programs you bought and installed? Name.
Lesson 3 — How a Computer Processes Data
INTRODUCTION TO COMPUTER PROGRAMMING itc-314 LECTURE 01.
INTRODUCTION TO COMPUTING
COMPUTER SYSTEM.
CS 1308 Computer Literacy and the Internet Computer Systems Organization.
1 BUSINESS TECHNOLOGY TODAY Chapter Two How ICT Works.
UNIT - 1Topic - 1. An electronic device, operating under the control of instructions stored in its own memory unit, that can accept data (input), manipulate.
Components of the system unit COMP Computer Skills Lecture -2.
2.0 Computer System.
Session 3 Process and organize data 1. Terminology 2 For a list of computer and internet terminology, please see the.
Session 3 Process and organize data 1. Terminology 2 For a list of computer and internet terminology, please see the.
Business Computer Information Systems I.  Knowing how to use a computer is a basic skill necessary to succeed in business or to function effectively.
Central Processing Unit
Intro to Computers Computer Apps 1.
©La-Nette Mark Did you know computers are everywhere you look, and even in places you can't see. Computers check out your groceries, pump your gas,
Lesson 3 — How a Computer Processes Data Unit 1 — Computer Basics.
Intro to Computers Computer Applications. What is a Computer? Initially the term computer referred to an individual whose job it was to perform mathematical.
Module 2 : Part 1 INTRODUCTION TO HARDWARE & SOFTWARE INTRODUCTION TO HARDWARE & SOFTWARE.
SKILL AREA: 1.2 MAIN ELEMENTS OF A PERSONAL COMPUTER.
Computer Component. A computer is a machine that is used to store and process data electronically Computer Definition.
J. Stover, CSD-HS.  A computer is an electronic device that is programmed to accept data (input), process it into useful information (output), and store.
ELEMENTS OF A COMPUTER SYSTEM HARDWARE SOFTWARE PEOPLEWARE DATA.
Components of a Computer System
Basic Systems and Software. Were we left off Computers are programmable (formal) machines. Digital information is stored as a series of two states (1.
Copyright © 2003 Prentice Hall, IncSlides created by Bob Koziel.
Electronic Analog Computer Dr. Amin Danial Asham by.
CS 1308 Computer Literacy and the Internet. Objectives In this chapter, you will learn about:  The components of a computer system  Putting all the.
Copyright 2003 Scott/Jones Publishing Standard Version of Starting Out with C++, 4th Edition Chapter 1 Introduction to Computers and Programming.
A.Abhari CPS1251 Topic 1: Introduction to Computers Computer Hardware Computer components Connecting Computers Computer Software Operating System (OS)
Lecture on Central Process Unit (CPU)
Computer Fundamentals MSCH 233 Lecture 1. What is a computer? A computer is an electronic machine which can accept data in a certain form, process the.
ICS2O-What is Computer and Information Science There is a wide variety of definitions for what a computer is or what it does. Our definition for the computer.
Brief Version of Starting Out with C++ Chapter 1 Introduction to Computers and Programming.
M211 – Central Processing Unit
1 3 Computing System Fundamentals 3.2 Computer Architecture.
©2013 Pearson Education, Inc. Upper Saddle River, NJ. All Rights Reserved. Introduction to Computers and Computing.
Computer Components Part #1. What is a Computer? n computer n A computer is an information processing machine. More specifically, a computer is an electronic.
IC 3 BASICS, Internet and Computing Core Certification Computing Fundamentals Lesson 2 How Does a Computer Process Data?
Hardware and Software By: Kyle Face. Hardware! Main computer hardware components Hardware refers to the physical components of a computer (What you can.
1 Chapter 1 Basic Structures Of Computers. Computer : Introduction A computer is an electronic machine,devised for performing calculations and controlling.
INTRODUCTION TO COMPUTERS. A computer system is an electronic device used to input data, process data, store data for later use and produce output in.
Computer Hardware What is a CPU.
Technology Literacy Hardware.
Components of Computer
Introduction to Computing
Computer Electronic device Accepts data - input
A451: Computer Systems and Programming
Chapter 6: Understanding and Assessing Hardware
Know Your PC.
Programming Logic and Design Eighth Edition
Introduction to Computers
Computer components.
Presentation transcript:

HOW A COMPUTER PROCESSES DATA

What is hardware? Hardware is the electric, electronic and mechanical equipment that makes up a computer What is software? Software is the series of instructions that tells the hardware how to perform tasks What is input and input devices? Any data or instructions which you enter into the computer What is output and output devices? Output is data that has been processed into information

What is a computer? An electronic machine  operates under the control of instructions stored in its own memory  can accept data  manipulates the data according to specified rules  produces results and  stores the results for future use

Who is a computer user? A user is someone who communicates with a computer or uses the information it generates. What is data? Data is a collection of unprocessed facts, figures and symbols What is information? Information is data that is organized, meaningful and useful

How a computer process data? Processing is the thinking that the computer does - the calculations, comparisons, and decisions. People also process data. What you see and hear and touch and feel is input. Then you connect this new input with what you already know, look for how it all fits together, and come up with a reaction, your output. "That stove is hot. I'll move my hand now!".

The kind of "thinking" that computers do is very different from what people do. Machines have to think the hard way Complex procedures must be broken down into VERY simple steps

Processing components

Computers processes data The CPU, or Central Processing Unit, is the part of the computer where work gets done. In most computers, there is one processing chip.

ALU ALU stands for Arithmetic/Logic Unit This is the part that executes the computer's commands. A command must be either a basic arithmetic operation: + - * / or one of the logical comparisons: >< =not= Everything has to be broken down into these few operations. The ALU can only do one thing at a time but can work very very fast.

Main Memory Main Memory stores the commands that the CPU executes and the results. This is where the computer stores the data and commands that are currently being used. When the computer is turned off, all data in Main Memory vanishes. A data storage method of this type is called volatile since the data "evaporates." The CPU can fetch one piece of data in one machine cycle.

Control Unit This is the part of the computer that controls the Machine Cycle. It takes numerous cycles to do even a simple addition of two numbers. The Machine Cycle Fetch -get an instruction from Main Memory Decode -translate it into computer commands Execute -actually process the command Store -write the result to Main Memory

OPERATING SYSTEM Operating System This is the instructions that the computer uses to tell itself how it "operates". It's the answer to "Who am I and what can I do?" Some common operating systems are DOS, various versions of Windows, OS/2, UNIX, LINUX, System 7. These all behave in very different ways and have different hardware requirements. So they won't all run on all machines.

Application Applications These are the various programs that are currently running on the computer. By taking turns with the Machine Cycle, modern computers can have several different programs running at once. This is called multi-tasking.Machine Cycle Each open application has to have some data stored in Main Memory, even if the application is on rest break and is just sitting there.

Input/Output Input/Output Storage When you enter new data, the keystrokes must be stored until the computer can do something with the new data. When you want data printed out or displayed, it must be stored somewhere handy first.

Working Storage Working Storage The numbers and characters that are the intermediate results of computer operations must be stored until the final values are calculated. These values "in progress" are kept in temporary locations. For example, if the computer is adding up the numbers 3, 5, and 6, it would first add 3 to 5 which yields a value of 8. The 8 is stored in working storage. Then the 8 and 6 are added and the new value 14 is stored. The value of 14 is now available to be displayed on the screen or to be printed or to be used in another calculation.

Unused storage Unused Storage One hopes that there is always some storage space that is not in use. If space runs out in Main Memory, the computer will crash, that is, stop working.