The Operating System The operation system (OS) is a set of programs that coordinates: Hardware functions Interaction between application software and computer.

Slides:



Advertisements
Similar presentations
Computers Are Your Future Twelfth Edition Chapter 4: System Software Copyright © 2012 Pearson Education, Inc. Publishing as Prentice Hall 1.
Advertisements

Computers Are Your Future Eleventh Edition
Higher Computing Computer Systems S. McCrossan Higher Grade Computing Studies 7. Systems Software 1 System Software This software is used to provide the.
Objectives Overview Define an operating system
Discovering Computers Fundamentals, Third Edition CGS 1000 Introduction to Computers and Technology Fall 2006.
What You Will Learn Components of a computer’s system software The importance of an operating system Functions of an operating system Types of user interfaces.
Chapter 5 System Software.
System Software Chapter 5 McGraw-Hill/Irwin Copyright © 2008 by The McGraw-Hill Companies, Inc. All rights reserved.
System Software Chapter Describe the differences between system software and application software Discuss the four types of system software Discuss.
Today’s Agenda Chapter 4: System Software Chapter 4: System Software Chapter 5: Application Software Chapter 5: Application Software.
Computers Are Your Future © 2005 Prentice-Hall, Inc. Excerpts for V New York University.
Operating Systems: Software in the Background
McGraw-Hill/Irwin Copyright © 2008 by The McGraw-Hill Companies, Inc. All rights reserved. Chapter 5 System Software.
Software. Application Software performs useful work on general-purpose tasks such as word processing and data analysis. The user interacts with the application.
Computers Are Your Future Chapter 4 Computers Are Your Future © 2008 Prentice-Hall, Inc.
Chapter 5 System Software.
The Operating System and the User Interface
1 Copyright © 2003 Prentice Hall, Inc Slides created by Bob Koziel Excerpts from Chapter 5.
UNIVERSITI TENAGA NASIONAL “Generates Professionals” MODULE 2 : Part 2 INTRODUCTION TO HARDWARE & SOFTWARE.
Operating Systems.
CSCI-235 Micro-Computer in Science System Software.
Chapter Three OPERATING SYSTEMS.
Your Interactive Guide to the Digital World Discovering Computers 2012.
Chapter 8 Operating Systems and Utility Programs Serena Oldhouser.
Computers Are Your Future Eleventh Edition Chapter 4: System Software Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall1.
Software GCSE COMPUTING.
3 3 3 CHAPTER System Software. 3 Objectives By the end of this lecture, you should know how to: –Describe the differences between system software and.
University of Management & Technology 1 Operating Systems & Utility Programs.
Explain the purpose of an operating system
Operating Systems TexPREP Summer Camp Computer Science.
Chapter 8: Operating Systems and Utility Programs Catherine Gifford Dan Falgares.
McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies, Inc. All rights reserved. Chapter 5 System Software.
System Software CSCI-N 100 Department of Computer and Information Science.
5 SYSTEM SOFTWARE CHAPTER
© Paradigm Publishing Inc. 4-1 OPERATING SYSTEMS.
Module 2 : Part 2 INTRODUCTION TO HARDWARE & SOFTWARE INTRODUCTION TO HARDWARE & SOFTWARE.
System Software Chapter Copyright © 2011 by The McGraw-Hill Companies, Inc. All rights reserved.
OPERATING SYSTEM - program that is loaded into the computer and coordinates all the activities among computer hardware devices. -controls the hardware.
Computer Literacy for IC 3 Unit 1: Computing Fundamentals © 2010 Pearson Education, Inc. | Publishing as Prentice Hall.1 Chapter 4: Identifying Software.
Computers Are Your Future Tenth Edition Chapter 4: System Software Copyright © 2009 Pearson Education, Inc. Publishing as Prentice Hall1.
© Paradigm Publishing, Inc. 4-1 Chapter 4 System Software Chapter 4 System Software.
Information Technology INT1001 Lecture 6 Computer Software 1.
CSC190 Introduction to Computing Operating Systems and Utility Programs.
Chapter 9 Operating Systems Discovering Computers Technology in a World of Computers, Mobile Devices, and the Internet.
BABCA Software Operating Systems (OS) aka Systems Software A set of instructions that coordinate all the activities among computer hardware resources.
BMTS 242: Computer and Systems Lecture 5: Yousef Alharbi Website
Computers Are Your Future Tenth Edition Chapter 4: System Software Copyright © 2009 Pearson Education, Inc. Publishing as Prentice Hall1.
System Software Chapter Handles technical details Works with end users, application software, and computer hardware Four types of programs –Operating.
Booting Process Chapter 4: System Software Copyright © 2009 Pearson Education, Inc. Publishing as Prentice Hall1.
OPERATING SYSTEM REVIEW. System Software The programs that control and maintain the operation of the computer and its devices The two parts of system.
CHAPTER 2 COMPUTER SOFTWARE. LEARNING OUTCOMES At the end of this class, students should be able to:  Explain the significance of software  Define and.
Computers Are Your Future Twelfth Edition Chapter 4: System Software Copyright © 2012 Pearson Education, Inc. Publishing as Prentice Hall 1.
System Software Chapter Handles technical details Works with end users, application software, and computer hardware Four types of programs –Operating.
DISCOVERING COMPUTERS 2018 Digital Technology, Data, and Devices
Computers: Tools for an Information Age
Nat 4/5 Computing Science Software
Operating System Review
Computers Are Your Future Eleventh Edition
Computers Are Your Future Twelfth Edition
Chapter 4 – Introduction to Operating System Concepts
Computers Are Your Future Twelfth Edition
5 SYSTEM SOFTWARE CHAPTER
Operating System Review
Computers Are Your Future Twelfth Edition
Computers Are Your Future
Operating System Review
5 SYSTEM SOFTWARE CHAPTER
5 SYSTEM SOFTWARE CHAPTER
Computers Are Your Future Twelfth Edition
Software - Operating Systems
Presentation transcript:

The Operating System The operation system (OS) is a set of programs that coordinates: Hardware functions Interaction between application software and computer hardware Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall1

Five basic functions Starts the computer Manages applications Manages memory Handles input and output device messages Provides a user interface for communication Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall2 The Operating System

Function 1: Starting the computer Loads the OS into RAM Called booting Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall3 The Operating System

Function 2: Managing applications Cooperative Multitasking permits more than one application to run at the same time. (Older.) The foreground application is the active one. Background applications appear inactive. Preemptive multitasking ensures that all applications have fair access to the CPU by switching between them. (Newer.) Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall4

Function 3: Managing memory A buffer, an area that holds data and instructions temporarily, makes programs run faster. RAM memory functions as the buffer. The OS gives each program a portion of RAM memory and keeps them from interfering with each other. Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall5 The Operating System

Function 3: Managing memory Virtual memory uses a portion of the hard disk to extend RAM. Pages are units of fixed size and contain program instructions and data. When RAM is full, copies of pages are temporarily stored in a swap file, a special hard disk file. Transferring files between RAM and the hard disk is called paging. Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall6 The Operating System

Function 3: Managing memory Adding more RAM is often the best way to improve computer performance because: Paging slows the computer. Accessing data from the hard disk is slower than accessing it from RAM. Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall7 The Operating System

Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall8 The Operating System

Function 4: Handling input and output Device drivers enable communication between the computer and the devices like the keyboard and mouse. Interrupts, signals created by input and output devices, notify the OS when actions are taken. Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall9 The Operating System

Function 5: Providing the user interface The user interface allows the user to: Start application programs Manage storage devices Safely shut down the computer Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall10

The Operating System Function 5: Providing the user interface The graphical user interface (GUI) uses icons, which are small images that: Represent computer resources used to initiate actions Appear on the desktop, the work area created after the OS loads into memory Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall11

Function 5: Providing the user interface The command-line user interface: Requires the user to type commands to instruct the OS to perform the desired actions Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall12 The Operating System

System Utilities: Housekeeping Tools System utilities (utility programs) Software programs that are essential to effective management of the computer system Perform tasks such as: Backing up files Providing antivirus protection Etc. Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall13

System Utilities: Housekeeping Tools Antivirus software protects the computer from viruses. Popular antivirus programs: Norton AntiVirus McAfee VirusScan Plus AVG Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall14

System Utilities: Housekeeping Tools Searching for and managing files File manager is the utility software that organizes and manages data. Copy files Determine how and where files are stored Delete files A search utility enables you to locate files. Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall15

System Utilities: Housekeeping Tools Scanning and defragmenting disks Disk scanning programs find and resolve disk file storage problems. Disk cleanup utilities remove unnecessary files to save space. Disk defragmentation programs reorganize stored data in a more efficient manner. Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall16

System Utilities: Housekeeping Tools Systems Update Windows Update for Windows 7 and Vista automatically downloads and installs updates. It includes service packs, version upgrades, and security updates. Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall17