Computer Systems Key Revision Points.

Slides:



Advertisements
Similar presentations
FatMax Licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 2.5 LicenseCreative Commons Attribution-NonCommercial-ShareAlike 2.5.
Advertisements

Calera High School Dawn Bone
Computer Parts There are many parts that work together to make a computer work.
Computer Hardware 4 Main Types.
Elements of a Microprocessor system Central processing unit. This performs the arithmetic and logical operations, such as add/subtract, multiply/divide,
COMPUTER APPLICATIONS Mr. Toscano Computer Concepts Lesson Objectives Students are introduced to the differences between computer software and computer.
Computer Hardware Storyboard
Computer Main Parts.
CP1610: Introduction to Computer Components Basic PC Components.
GCSE Computing#BristolMet Session Objectives# Must identify some common types of computer system Should describe the meaning of a computer system Could.
Computers & Logic An Overview. Hardware Hardware is the equipment, or the devices, associated with a computer. For a computer to be useful, however, it.
Systems Analysis Chapter 8 P 94 to P 101
Introduction to Computers. Are Computers Important? OF COURSE!
Introduction To Computer System
Components of a computer system. Learning Objectives
Computer Parts There are many parts that work together to make a computer work.
UNIT - 1Topic - 1. An electronic device, operating under the control of instructions stored in its own memory unit, that can accept data (input), manipulate.
Introduction to Computers Business Technology Essentials.
Computer Components Checklist There are many parts that work together to make a computer work.
A-Level Computing#BristolMet Session Objectives# Must identify some common types of computer system Should describe the meaning of a computer system Could.
Chapter 1 Computers: Tools for an Information Age.
C++ Basics C++ is a high-level, general purpose, object-oriented programming language.
Lesson 1 Operating Systems, Part 1. Objectives Describe and list different operating systems Understand file extensions Manage files and folders.
MIS 105 LECTURE 1 INTRODUCTION TO COMPUTER HARDWARE CHAPTER REFERENCE- CHP. 1.
Introduction to Computers. Are Computers Important? OF COURSE!
There are many parts that work together to make a computer work. System Unit Computer Parts.
 There are many parts that work together to make a computer work.
Computer Parts There are many parts that work together to make a computer work.
Software Grade 10. BIOS and the Power-on Self Test A computer can’t do much without instructions The first thing the CPU does when you switch it on is.
Chapter 1: How are computers organized?. Software, data, & processing ? A computers has no insight or intuition A computers has no insight or intuition.
Chapter 2 In the end of the lesson, student should be able to..  Describe the main components of a computer system, hardware.  Provide examples of.
IDENTIFY COMPUTER FUNDAMENTALS A COMPUTER IS A ELECTRONIC DEVICE THAT PERFORMS THE FOUR BASIC OPERATIONS THAT COMPRISE THE INFORMATION PROCESSING CYCLE.
Computer Parts And Components PERIPHERALS. Definition of Peripherals External hardware devices attached to the computer are called peripheral devices.
Unit 7 PC SYSTEMS Unit 7: PC Systems Unit type: Certificate and Diploma Learning hours: 60 hours Unit level: 1.
Course Aims This course will help you understand the latest technologies & how they work. You will lean how to develop computer programs to solve problems.
Course Overview This course encourages candidates to develop their knowledge and understanding of computer systems, the principles of computing (including.
COMPUTER PARTS INSIDE - OUTSIDE. Computer Parts There are many parts that work together to make a computer work.
Computer Parts There are many parts that work together to make a computer work.
Lets Learn fundamentals !!
Computer Systems Nat 4/5 Computing Science Computer Structure:
Part 1- Computer Systems Part 2 – Computer Architecture Mr Belony
Project planning The systems life cycle.
Lesson Objectives Aims
How We Think Of Computers
Validation Bury College.
Computer Parts There are many parts that work together to make a computer work.
Computer Parts There are many parts that work together to make a computer work.
Computer Parts There are many parts that work together to make a computer work.
Computer Parts There are many parts that work together to make a computer work.
Computer Parts There are many parts that work together to make a computer work.
Computer Parts There are four main equipment functions of a computer system: Input, Processing, Storage and Output. Input: the transferring of information.
Introduction to IT Zeeshan A. Bhatti.
Computer Based Technology:
Computer Fundamentals
Computer Parts There are four main equipment functions of a computer system: Input, Processing, Storage and Output. Input: the transferring of information.
Peripheral Devices
Chapter 1: How are computers organized?
Introduction to Embedded Systems
Computer Parts There are many parts that work together to make a computer work.
Computer Parts There are many parts that work together to make a computer work.
The Main Features of Operating Systems
Computing Essentials Module 1.
Computer Parts There are many parts that work together to make a computer work.
Computer Parts There are many parts that work together to make a computer work.
Computing Essentials Module 1.
 Is a machine that is able to take information (input), do some work on (process), and to make new information (output) COMPUTER.
Internal components of a computer.
Bioinformatics (Nursing)
Presentation transcript:

Computer Systems Key Revision Points

Definitions A combination of hardware and software working together (to accomplish a task or solve a problem). Hardware refers to the physical components that make up a computer system. These can be installed inside, or connected to the outside, of a computer. Software describes the programs that control and make use of the hardware. Software is used to give instructions to the processor so that we can accomplish different tasks.

Computer Systems Simplified INPUT PROCESSING OUTPUT STORAGE

Computer Systems Simplified DATA PROCESSING INFORMATION

Input & Output Devices Used to get data into or information out of a computer system Some devices perform both functions What about a mobile phone? List the input/output devices built into your phone

Embedded Computer Many common household and industrial devices have a special purpose computer built into them (often on a single circuit board or chip) called embedded computers or embedded systems

Robust & Reliable Software in computer systems needs to be robust and reliable. In some cases this is critical e.g. life support systems: Robust – can cope with a wide range of inputs without crashing. Reliable – Always behaves in a way that is predicable so can be used with confidence.

Error Trapping Many problems with non robust and unreliable systems caused during input: Wrong data type Data out of range “Fat fingers”!!! Some errors can be prevented by the programmer using error trapping techniques (programming defensively) – see next slide

Validation & Verification Validation – check input for errors using “rules” in the program e.g. while input!=“a”, print error, get input again Verification – double check data input to make sure it doesn’t contain errors. A common way to do this is by forcing the user to enter the data twice and comparing the two inputs.