SlideShare a Scribd company logo
3
Most read
4
Most read
5
Most read
Module 1
for
Operating Systems: Configuration and Use
Bachelor of Science and Information System
Designed and Compiled by
Mark John Perez – Lado
Table of Contents
Learning Objectives
Lesson 1 Introduction to OS
What is an Operating System?
The Basic task of Operating System
Types of Operating System
OS’s Manage Applications
Learning Activity 1
Assessment 1
Lesson 2 Computer Memory
Operating System Functions
OS - Memory Storage and Management
Cache Memory
RAM Memory
Virtual Memory
Virtual Memory – Swap File
Learning Activity 2
Assessment 2
Page | 2
Learning Objectives
At the end of this module, you will be able to;
1. appreciate the concept of Operating System
2. engage with the basic task of Operating System
3. identify the types of Operating System
4. explain process management
5. discuss memory management
6. distinguish process and memory management
7. differentiate I/O management and file management
8. optimize the role Virtual Memory – Swap File
Page | 3
WHAT IS AN OPERATING SYSTEM?
It is the most important program that runs on your computer. It manages all other programs on the
machine. Every PC has to have one to run other applications or programs. It’s the first thing
“loaded”.
It performs basic tasks, such as:
1. Recognizing input from the keyboard or mouse,
2. Sending output to the monitor,
3. Keeping track of files and directories on the disk, and
4. Controlling peripheral devices such as disk drives and printers.
IS THERE MORE THAN ONE TYPE OF OS?
Generally, there are four types, based on the type of computer they control and the sort of
applications they support.
1. Single-user, single task - This type manages the computer so that one user can effectively
do one thing at a time.
2. Multi-user, multi-task - Allows two or more users to run programs at the same time.
Some operating systems permit hundreds or even thousands of concurrent users.
Page | 4
3. Real Time Operating Systems - RTOS are used to control machinery, scientific instruments,
and industrial systems.
There is typically very little user interface capability.
Resources are managed so that a particular operation executes precisely the same every time.
4. Single-user, Multi-tasking - This is the type of operating system most desktops and laptops
use today.
Microsoft’s Windows and Apple’s MacOS are both examples of operating systems that will let a
single user have several programs in operation at the same time.
Page | 5
OS’s MANAGE APPLICATIONS
Operating systems provide a software platform on top of which other “application” programs can
run.
The application programs must be written to run on a particular operating system.
So, your choice of operating system determines what application software you can run.
Page | 6
Learning Activity 1
Write your answers on a clean yellow pad paper.
1. Why does operating system is important in every device?
2. Narrate the basic tasks of an operating system.
3. Cite the types of an operating system and give a brief dialog in each type.
Page | 7
Assessment 1
Test I. Read each item carefully and encircle the letter of the correct answer.
1. This type manages the computer so that one user can effectively do one thing at a time.
A. Single-user, single task
B. Multi-user, multi-task
C. Real Time Operating Systems
2. This is the type of operating system most desktops and laptops use today.
A. Single-user, Multi-tasking
B. Multi-user, multi-task
C. Real Time Operating Systems
3. Allows two or more users to run programs at the same time. Some operating systems
permit hundreds or even thousands of concurrent users.
A. Single-user, single task
B. Multi-user, multi-task
C. Real Time Operating Systems
4. RTOS are used to control machinery, scientific instruments, and industrial systems.
A. Single-user, single task
B. Multi-user, multi-task
C. Real Time Operating Systems
5. An operating system that allows a single user to perform only one task at a time
A. Single-user, single task
B. Multi-user, multi-task
C. Real Time Operating Systems
Page | 8
Test II. Essay: Write your answers on the space provided below.
Criteria
● Organization of thoughts - 5 points
● Content - 5 points
● Accuracy (Spelling and Punctuations) - 5 points
Total = 15 points
What are the disadvantages of single user system?
Page | 9
OPERATING SYSTEM FUNCTIONS
Besides managing hardware and software resources on the system, the OS must manage
resources and memory. There are two broad tasks to be accomplished.
OS - MEMORY STORAGE AND MANAGEMENT
Each process must have enough memory in which to execute, and
It can neither run into the memory space of another process,
Nor be run into by another process.
The different types of memory in the system must be used properly so that each process can run
most effectively.
Memory management is all about making sure there is as much available memory space as possible
for new programs, data and processes to execute. As memory is used by multiple parts of a modern
system, memory allocation and memory management can take on different forms.
Page | 10
Cache Memory
Cache - A section of a computer's memory which temporarily retains recently accessed data in
order to speed up repeated access to the same data.
Cache memory is an extremely fast memory type that acts as a buffer between RAM and the CPU.
It holds frequently requested data and instructions so that they are immediately available to the
CPU when needed. Cache memory is used to reduce the average time to access data from the Main
memory.
It provides rapid access without having to wait for systems to load.
RAM Memory
Random access memory (RAM) is the best known form of computer memory.
RAM is considered "random access" because you can access any memory cell directly if you
know the row and column that intersect at that cell.
The more RAM your computer has, the faster programs can function.
The two main types are called DRAM and SRAM. SRAM is faster than DRAM, but, more
expensive.
Page | 11
Remember, that if the power is turned off, then all data left in RAM, that has not been saved to
the hard drive, is lost.
VIRTUAL MEMORY
Virtual memory is a feature of an operating system that enables a computer to be able to
compensate shortages of physical memory by transferring pages of data from random access
memory to disk storage. This process is done temporarily and is designed to work as a combination
of RAM and space on the hard disk.
A method of using hard disk space to provide extra memory. It simulates additional RAM.
In Windows, the amount of virtual memory available equals the amount of free RAM plus the
amount of disk space allocated to the swap file.
Page | 12
VIRTUAL MEMORY – SWAP FILE
A swap file is an area of your hard disk that is set aside for virtual memory. Swap files can be
either temporary or permanent.
A swap file (or swap space or, in Windows NT, a page file) is a space on a hard disk used as the
virtual memory extension of a computer's real memory (RAM). Having a swap file allows your
computer's operating system to pretend that you have more RAM than you actually do.
Page | 13
Learning Activity 2
Write your answer on a clean yellow pad paper.
1. What is the storage management?
2. What is difference between storage and memory?
3. Why is memory management important?
4. What do you mean by cache memory?
5. What is meant by RAM memory?
6. What do you mean by virtual memory?
7. What is virtual memory – swap file?
Page | 14
Assessment 2
Test I. Read each item carefully and encircle the letter of the correct answer.
1. A section of a computer's memory which temporarily retains recently accessed data in order to
speed up repeated access to the same data.
A. Cache Memory
B. RAM Memory
C. Virtual memory
2. Memory that appears to exist as main storage although most of it is supported by data held in
secondary storage, transfer between the two being made automatically as required.
A. Cache Memory
B. RAM Memory
C. Virtual memory
3. Considered "random access" because you can access any memory cell directly if you know the
row and column that intersect at that cell.
A. Cache Memory
B. RAM Memory
C. Virtual memory
4. A method of using hard disk space to provide extra memory. It simulates additional RAM.
A. Cache Memory
B. RAM Memory
C. Virtual memory
5. A form of computer memory that can be read and changed in any order, typically used to store
working data and machine code.
A. Cache Memory
B. RAM Memory
C. Virtual memory
Page | 15
Test II. Essay - Write your answers on the space provided below.
Criteria
● Organization of thoughts - 5 points
● Content - 5 points
● Accuracy (Spelling and Punctuations) - 5 points
Total = 15 points
What is a memory stick used for?
Page | 16
End of module 1

More Related Content

PPS
Operating Systems and Memory Management
DOCX
Operating syestem class 9 notes.doc
PPTX
Chapter 2 operating systems
PPTX
LEC 1.pptx
PPTX
The basic fundamentals' of operating system
DOCX
Operating system introduction
PPTX
module 1-1.pptx
PPT
OPERATING SYSTEM BY DR .MUGABO MG MKAMA
Operating Systems and Memory Management
Operating syestem class 9 notes.doc
Chapter 2 operating systems
LEC 1.pptx
The basic fundamentals' of operating system
Operating system introduction
module 1-1.pptx
OPERATING SYSTEM BY DR .MUGABO MG MKAMA

Similar to 1 Module - Operating Systems Configuration and Use by Mark John Lado (20)

DOCX
Operating system
DOCX
Operating system notes
PPT
Basics of Operating System
PPTX
Android Memory Management
PPTX
os memory management unit iii memory.pptx
PPT
Introduction of operating system
PPTX
Session1 intro to_os
PDF
Os notes
DOCX
PPTX
Os unit 2
PDF
Operating Systems Structure1- Explain briefly why the objectives o.pdf
PDF
CSC1100 - Chapter06 - Operating System & Utility Programs
PPTX
PPTX
introduce computer .pptx
DOCX
An_Operating_System by chidi kingsley wo
PPT
Operating systems
PDF
Operating System Lecture Notes
DOCX
virtual memory
PPTX
Operating system
Operating system
Operating system notes
Basics of Operating System
Android Memory Management
os memory management unit iii memory.pptx
Introduction of operating system
Session1 intro to_os
Os notes
Os unit 2
Operating Systems Structure1- Explain briefly why the objectives o.pdf
CSC1100 - Chapter06 - Operating System & Utility Programs
introduce computer .pptx
An_Operating_System by chidi kingsley wo
Operating systems
Operating System Lecture Notes
virtual memory
Operating system
Ad

More from Mark John Lado, MIT (20)

PDF
Exploring Parts of Speech, Creating Strong Objectives, and Choosing the Right...
PDF
Optimizing Embedded System Device Communication with Network Topology Design
PDF
Embedded Systems IO Peripherals Wireless Communication.pdf
PDF
Implementing the 6S Lean Methodology for Streamlined Computer System Maintena...
PDF
ISO IEC 25010 2011 Systems and Software Quality Requirements and Evaluation S...
PDF
4 Module - Operating Systems Configuration and Use by Mark John Lado
PDF
3 Module - Operating Systems Configuration and Use by Mark John Lado
PDF
2 Module - Operating Systems Configuration and Use by Mark John Lado
PPSX
PART 1 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...
PPSX
PART 2 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...
PPSX
PART 3 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...
PPSX
Dart Programming Language by Mark John Lado
PPTX
What is CRUD in TPS?
PPSX
Computer hacking and security - Social Responsibility of IT Professional by M...
PDF
A WIRELESS DIGITAL PUBLIC ADDRESS WITH VOICE ALARM AND TEXT-TO-SPEECH FEATURE...
PPTX
IT Security and Management - Semi Finals by Mark John Lado
PPTX
IT Security and Management - Security Policies
PPTX
Systems Administration - MARK JOHN LADO
PPTX
IT Security and Management - Prelim Lessons by Mark John Lado
PPTX
Introduction to Networks and Programming Language
Exploring Parts of Speech, Creating Strong Objectives, and Choosing the Right...
Optimizing Embedded System Device Communication with Network Topology Design
Embedded Systems IO Peripherals Wireless Communication.pdf
Implementing the 6S Lean Methodology for Streamlined Computer System Maintena...
ISO IEC 25010 2011 Systems and Software Quality Requirements and Evaluation S...
4 Module - Operating Systems Configuration and Use by Mark John Lado
3 Module - Operating Systems Configuration and Use by Mark John Lado
2 Module - Operating Systems Configuration and Use by Mark John Lado
PART 1 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...
PART 2 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...
PART 3 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...
Dart Programming Language by Mark John Lado
What is CRUD in TPS?
Computer hacking and security - Social Responsibility of IT Professional by M...
A WIRELESS DIGITAL PUBLIC ADDRESS WITH VOICE ALARM AND TEXT-TO-SPEECH FEATURE...
IT Security and Management - Semi Finals by Mark John Lado
IT Security and Management - Security Policies
Systems Administration - MARK JOHN LADO
IT Security and Management - Prelim Lessons by Mark John Lado
Introduction to Networks and Programming Language
Ad

Recently uploaded (20)

PPTX
Cell Types and Its function , kingdom of life
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PDF
Sports Quiz easy sports quiz sports quiz
PPTX
Lesson notes of climatology university.
PDF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PDF
RMMM.pdf make it easy to upload and study
PPTX
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PDF
Classroom Observation Tools for Teachers
PPTX
Microbial diseases, their pathogenesis and prophylaxis
PPTX
PPH.pptx obstetrics and gynecology in nursing
PDF
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PDF
Complications of Minimal Access Surgery at WLH
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
Cell Types and Its function , kingdom of life
Module 4: Burden of Disease Tutorial Slides S2 2025
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
Sports Quiz easy sports quiz sports quiz
Lesson notes of climatology university.
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
RMMM.pdf make it easy to upload and study
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
O5-L3 Freight Transport Ops (International) V1.pdf
Classroom Observation Tools for Teachers
Microbial diseases, their pathogenesis and prophylaxis
PPH.pptx obstetrics and gynecology in nursing
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
102 student loan defaulters named and shamed – Is someone you know on the list?
2.FourierTransform-ShortQuestionswithAnswers.pdf
Complications of Minimal Access Surgery at WLH
STATICS OF THE RIGID BODIES Hibbelers.pdf

1 Module - Operating Systems Configuration and Use by Mark John Lado

  • 1. Module 1 for Operating Systems: Configuration and Use Bachelor of Science and Information System Designed and Compiled by Mark John Perez – Lado
  • 2. Table of Contents Learning Objectives Lesson 1 Introduction to OS What is an Operating System? The Basic task of Operating System Types of Operating System OS’s Manage Applications Learning Activity 1 Assessment 1 Lesson 2 Computer Memory Operating System Functions OS - Memory Storage and Management Cache Memory RAM Memory Virtual Memory Virtual Memory – Swap File Learning Activity 2 Assessment 2
  • 3. Page | 2 Learning Objectives At the end of this module, you will be able to; 1. appreciate the concept of Operating System 2. engage with the basic task of Operating System 3. identify the types of Operating System 4. explain process management 5. discuss memory management 6. distinguish process and memory management 7. differentiate I/O management and file management 8. optimize the role Virtual Memory – Swap File
  • 4. Page | 3 WHAT IS AN OPERATING SYSTEM? It is the most important program that runs on your computer. It manages all other programs on the machine. Every PC has to have one to run other applications or programs. It’s the first thing “loaded”. It performs basic tasks, such as: 1. Recognizing input from the keyboard or mouse, 2. Sending output to the monitor, 3. Keeping track of files and directories on the disk, and 4. Controlling peripheral devices such as disk drives and printers. IS THERE MORE THAN ONE TYPE OF OS? Generally, there are four types, based on the type of computer they control and the sort of applications they support. 1. Single-user, single task - This type manages the computer so that one user can effectively do one thing at a time. 2. Multi-user, multi-task - Allows two or more users to run programs at the same time. Some operating systems permit hundreds or even thousands of concurrent users.
  • 5. Page | 4 3. Real Time Operating Systems - RTOS are used to control machinery, scientific instruments, and industrial systems. There is typically very little user interface capability. Resources are managed so that a particular operation executes precisely the same every time. 4. Single-user, Multi-tasking - This is the type of operating system most desktops and laptops use today. Microsoft’s Windows and Apple’s MacOS are both examples of operating systems that will let a single user have several programs in operation at the same time.
  • 6. Page | 5 OS’s MANAGE APPLICATIONS Operating systems provide a software platform on top of which other “application” programs can run. The application programs must be written to run on a particular operating system. So, your choice of operating system determines what application software you can run.
  • 7. Page | 6 Learning Activity 1 Write your answers on a clean yellow pad paper. 1. Why does operating system is important in every device? 2. Narrate the basic tasks of an operating system. 3. Cite the types of an operating system and give a brief dialog in each type.
  • 8. Page | 7 Assessment 1 Test I. Read each item carefully and encircle the letter of the correct answer. 1. This type manages the computer so that one user can effectively do one thing at a time. A. Single-user, single task B. Multi-user, multi-task C. Real Time Operating Systems 2. This is the type of operating system most desktops and laptops use today. A. Single-user, Multi-tasking B. Multi-user, multi-task C. Real Time Operating Systems 3. Allows two or more users to run programs at the same time. Some operating systems permit hundreds or even thousands of concurrent users. A. Single-user, single task B. Multi-user, multi-task C. Real Time Operating Systems 4. RTOS are used to control machinery, scientific instruments, and industrial systems. A. Single-user, single task B. Multi-user, multi-task C. Real Time Operating Systems 5. An operating system that allows a single user to perform only one task at a time A. Single-user, single task B. Multi-user, multi-task C. Real Time Operating Systems
  • 9. Page | 8 Test II. Essay: Write your answers on the space provided below. Criteria ● Organization of thoughts - 5 points ● Content - 5 points ● Accuracy (Spelling and Punctuations) - 5 points Total = 15 points What are the disadvantages of single user system?
  • 10. Page | 9 OPERATING SYSTEM FUNCTIONS Besides managing hardware and software resources on the system, the OS must manage resources and memory. There are two broad tasks to be accomplished. OS - MEMORY STORAGE AND MANAGEMENT Each process must have enough memory in which to execute, and It can neither run into the memory space of another process, Nor be run into by another process. The different types of memory in the system must be used properly so that each process can run most effectively. Memory management is all about making sure there is as much available memory space as possible for new programs, data and processes to execute. As memory is used by multiple parts of a modern system, memory allocation and memory management can take on different forms.
  • 11. Page | 10 Cache Memory Cache - A section of a computer's memory which temporarily retains recently accessed data in order to speed up repeated access to the same data. Cache memory is an extremely fast memory type that acts as a buffer between RAM and the CPU. It holds frequently requested data and instructions so that they are immediately available to the CPU when needed. Cache memory is used to reduce the average time to access data from the Main memory. It provides rapid access without having to wait for systems to load. RAM Memory Random access memory (RAM) is the best known form of computer memory. RAM is considered "random access" because you can access any memory cell directly if you know the row and column that intersect at that cell. The more RAM your computer has, the faster programs can function. The two main types are called DRAM and SRAM. SRAM is faster than DRAM, but, more expensive.
  • 12. Page | 11 Remember, that if the power is turned off, then all data left in RAM, that has not been saved to the hard drive, is lost. VIRTUAL MEMORY Virtual memory is a feature of an operating system that enables a computer to be able to compensate shortages of physical memory by transferring pages of data from random access memory to disk storage. This process is done temporarily and is designed to work as a combination of RAM and space on the hard disk. A method of using hard disk space to provide extra memory. It simulates additional RAM. In Windows, the amount of virtual memory available equals the amount of free RAM plus the amount of disk space allocated to the swap file.
  • 13. Page | 12 VIRTUAL MEMORY – SWAP FILE A swap file is an area of your hard disk that is set aside for virtual memory. Swap files can be either temporary or permanent. A swap file (or swap space or, in Windows NT, a page file) is a space on a hard disk used as the virtual memory extension of a computer's real memory (RAM). Having a swap file allows your computer's operating system to pretend that you have more RAM than you actually do.
  • 14. Page | 13 Learning Activity 2 Write your answer on a clean yellow pad paper. 1. What is the storage management? 2. What is difference between storage and memory? 3. Why is memory management important? 4. What do you mean by cache memory? 5. What is meant by RAM memory? 6. What do you mean by virtual memory? 7. What is virtual memory – swap file?
  • 15. Page | 14 Assessment 2 Test I. Read each item carefully and encircle the letter of the correct answer. 1. A section of a computer's memory which temporarily retains recently accessed data in order to speed up repeated access to the same data. A. Cache Memory B. RAM Memory C. Virtual memory 2. Memory that appears to exist as main storage although most of it is supported by data held in secondary storage, transfer between the two being made automatically as required. A. Cache Memory B. RAM Memory C. Virtual memory 3. Considered "random access" because you can access any memory cell directly if you know the row and column that intersect at that cell. A. Cache Memory B. RAM Memory C. Virtual memory 4. A method of using hard disk space to provide extra memory. It simulates additional RAM. A. Cache Memory B. RAM Memory C. Virtual memory 5. A form of computer memory that can be read and changed in any order, typically used to store working data and machine code. A. Cache Memory B. RAM Memory C. Virtual memory
  • 16. Page | 15 Test II. Essay - Write your answers on the space provided below. Criteria ● Organization of thoughts - 5 points ● Content - 5 points ● Accuracy (Spelling and Punctuations) - 5 points Total = 15 points What is a memory stick used for?
  • 17. Page | 16 End of module 1