Basic Systems and Software. Were we left off Computers are programmable (formal) machines. Digital information is stored as a series of two states (1.

Slides:



Advertisements
Similar presentations
Calera High School Dawn Bone
Advertisements

COMP6005 An Introduction to Computing Session Two: Computer Hardware.
 Computer hardware components are the physical pieces of the computer.  The major hardware components of a computer are: – The central processing.
Computer Components.
IT Systems Operating System EN230-1 Justin Champion C208 –
Chapter 9_3 Following Instructions: Principles of Computer Operation.
Computer Hardware.
1 Programming & Programming Languages Overview l Machine operations and machine language. l Example of machine language. l Different types of processor.
UNIX chapter 03 Getting Started Mr. Mohammad Smirat.
A “Java Fun For Everyone” Interactive Quiz
Computer Basics Flashcards #2
An Introduction to Operating Systems. Definition  An Operating System, or OS, is low-level software that enables a user and higher-level application.
Week 6 Operating Systems.
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.
© Paradigm Publishing Inc. 4-1 Chapter 4 System Software.
Group 6 Comp 129 Chapter 4.  An operating system s a set of programs made to manage the resources of a computer.  The OS performs five basic functions:
Today’s Agenda: Computer Basics Review Hardware: The physical components of a computer, any internal or external computer part that you can touch. Software:
Parts of a Computer.
1.1 1 Introduction Foundations of Computer Science  Cengage Learning.
Chapter 4 System Software.
What is a Computer ? Computers are Electronic Machines that process (performs calculation and manipulation) Data under the control of Set of Instructions.
CS 1308 Computer Literacy and the Internet. Introduction  Von Neumann computer  “Naked machine”  Hardware without any helpful user-oriented features.
Software GCSE COMPUTING.
Question and Answer Samples and Techniques. A series of step by step instructions that tell a computer what functions to complete… CPU Output Device Graphic.
Computing and the Web Operating Systems. Overview n What is an Operating System n Booting the Computer n User Interfaces n Files and File Management n.
Computer Components Checklist There are many parts that work together to make a computer work.
The 4 functions of a computer are 1.Input 2.Output 3.Storage 4.Processing.
Computer Basics Terminology - Take Notes. What is a computer? well, what is the technical definition A computer is a machine that changes information.
Computers Today Information taken from: Microsoft Office 97 Professional by Lawrence Press Microsoft Office 2003 by Glencoe Dell Dimension B110 2 iMac.
Intro to Computers Computer Applications. What is a Computer? Initially the term computer referred to an individual whose job it was to perform mathematical.
Parts of a Computer - Introduction
Foundation year Lec.3: Computer SoftwareLec.3: Computer Software Lecturer: Dalia Mirghani Year: 2014/2015.
OPERATING SYSTEM - program that is loaded into the computer and coordinates all the activities among computer hardware devices. -controls the hardware.
Operating Systems Lesson Objective: Understanding the functions of an operating system. Learning Outcome: Answer some basic questions on operating systems.
Computers Today.
Parts of the Computer System
© 2006 Pearson Education Chapter 1: Computer Systems.
1 Software. 2 What is software ► Software is the term that we use for all the programs and data on a computer system. ► Two types of software ► Program.
Click once to reveal the definition. Think of the answer. Then click to see if you were correct. HARDWARE Physical parts of the computer.
Computer Software Operating Systems – Programs. Computer Language - Review We learnt that computers are made up of millions of tiny switches that can.
Chapter 8 Operating Systems. Objectives Identify the types of system software Summarize the startup process on a personal computer Describe the functions.
HOW A COMPUTER PROCESSES DATA. What is hardware? Hardware is the electric, electronic and mechanical equipment that makes up a computer What is software?
PARTS OF A COMPUTER 2 Hardware Computer Hardware is any of the physical parts of the computer you can touch. There are 4 categories: 1. Input Devices.
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.
©2013 Pearson Education, Inc. Upper Saddle River, NJ. All Rights Reserved. Introduction to Computers and Computing.
Fly Swatter Game Let’s Swat It Now!!. A contract that defines acceptable rules and policies for computer use:
Introducing Networks and the Internet Mrs. Wilson Rocky Point High School.
OPERATING SYSTEM REVIEW. System Software The programs that control and maintain the operation of the computer and its devices The two parts of system.
OPERATING SYSTEMS DO YOU REQUIRE AN OPERATING SYSTEM IN YOUR SYSTEM?
Computer Basics CHAPTER 1. What is a computer?  A computer is a machine that changes information from one form into another by performing four basic.
Introduction To Computer Programming – 1A Computer Parts, Words, and Definition Herriman High School.
Copyright © 2006 by The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill Technology Education Chapter 1 Looking Inside the Computer System.
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.
Five Components of a Computer Input Device – keyboard, scanner, PDA/stylus, digital camera, mouse, MP3 player, fax machine, microphone Storage Device –
1 OPERATING SYSTEMS. 2 CONTENTS 1.What is an Operating System? 2.OS Functions 3.OS Services 4.Structure of OS 5.Evolution of OS.
Computer Architecture and Number Systems
Computer Hardware What is a CPU.
Chapter Objectives In this chapter, you will learn:
Operating System Review
Hardware vs. Software Question 1 What is hardware?
Computer Organization
08/28/06 parts of the computer.
Who’s in charge in there?
Operating System Review
Hardware / Software Intro
Operating System Review
Chapter 1: How are computers organized?
Overview 1. Inside a PC 2. The Motherboard 3. RAM the 'brains' 4. ROM
08/28/06 parts of the computer.
Presentation transcript:

Basic Systems and Software

Were we left off Computers are programmable (formal) machines. Digital information is stored as a series of two states (1 and 0, on and off, yes and no, true and false). There are various types of memory in the computer.

But how does it work? How are programs written? How do you tell the computer what to do? How does the computer follow your commands? How does the computer make decisions?

Based on the CPU The CPU is the brains of the computer, a tiny chip that gives the computer the ability to follow instructions (and become another machine). Intel Pentium Instruction

What does the CPU do? CPU Instruction Input Output

What is the CPU connected to? CPU RAM memory I/O Disks Keyboard Monitor Internet Ports

Where are the instructions? CPU RAM ADD a, b PUT in c MULT c, d. PUT on screen Programs are stored in RAM and read one instruction at a time to the CPU c 5 a 2 b 8 d

What it really look like… CPU RAM Programs are stored in RAM and read one instruction at a time to the CPU Program counter

How does the CPU think? A list of instructions does not make a computer think unless it can make decisions. Here is an example: What is the value of d when the program is done, when a = 20 and b = 10? ADD A,B PUT B TST B,100 IFG 5 MPC 001 PUT D

So what is the operating system? The Operating system helps other programs work without so much detail. Controls how different programs are allocated memory and CPU time. Makes dealing with different hardware components transparent to the programs.

Picture it like this A Program B Program … Print A Operating System CPU Program counter

Multitasking Sometimes your computer wants to do many things at one time to utilize the CPU to its fullest. This is called multitasking. The Operating system usually facilitates many programs running at once. The Unix operating system allocates a very small amount of time to each program and each is forced to take its turn. It does this with the use of an interrupt.

Problem with Windows Early versions of DOS had no multitasking. Windows had some, but allowed programs to give up the processor freely. Sometimes windows can not force a program to quit. Why is this a problem?

Advantages of Multitasking Disk I/O is very slow compared to other work for the CPU, so while it is waiting it can do something else. (microwave example). Programs running too long can be stopped. You can work on interacting, real-time programs at the same time.

What happens when the computer runs out of memory The operating system normally handles something called “virtual memory”. HARD DISK RAM Virtual Memory CPU