SlideShare a Scribd company logo
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
Ad

More Related Content

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

Operating system
Operating systemOperating system
Operating system
chetan handa
 
Operating system notes
Operating system notesOperating system notes
Operating system notes
SANTOSH RATH
 
Basics of Operating System
Basics of Operating SystemBasics of Operating System
Basics of Operating System
Soumit Ghosh
 
Android Memory Management
Android Memory ManagementAndroid Memory Management
Android Memory Management
Sadmankabirsoumik
 
Introduction of operating system
Introduction of operating systemIntroduction of operating system
Introduction of operating system
Jitendrakumar Upadhyay
 
Session1 intro to_os
Session1 intro to_osSession1 intro to_os
Session1 intro to_os
Kalyani Patil
 
Os notes
Os notesOs notes
Os notes
SANTOSH RATH
 
Unit 1 q&a
Unit  1 q&aUnit  1 q&a
Unit 1 q&a
Dr.M.Karthika parthasarathy
 
Os unit 2
Os unit 2Os unit 2
Os unit 2
Arnav Chowdhury
 
Operating Systems Structure1- Explain briefly why the objectives o.pdf
Operating Systems Structure1- Explain briefly why the objectives o.pdfOperating Systems Structure1- Explain briefly why the objectives o.pdf
Operating Systems Structure1- Explain briefly why the objectives o.pdf
rishabjain5053
 
CSC1100 - Chapter06 - Operating System & Utility Programs
CSC1100 - Chapter06 - Operating System & Utility ProgramsCSC1100 - Chapter06 - Operating System & Utility Programs
CSC1100 - Chapter06 - Operating System & Utility Programs
Yhal Htet Aung
 
Chapter 5
Chapter 5Chapter 5
Chapter 5
Er. Nawaraj Bhandari
 
introduce computer .pptx
introduce computer .pptxintroduce computer .pptx
introduce computer .pptx
SHUJEHASSAN
 
Operating systems
Operating systemsOperating systems
Operating systems
oswaldm80
 
Operating System Lecture Notes
Operating System Lecture NotesOperating System Lecture Notes
Operating System Lecture Notes
FellowBuddy.com
 
virtual memory
virtual memoryvirtual memory
virtual memory
Abeer Naskar
 
Operating system
Operating systemOperating system
Operating system
abhinavgarg12345
 
Os
OsOs
Os
rajashreebarik
 
Operating System
Operating SystemOperating System
Operating System
Govt. P.G. College Dharamshala
 
Operating system 2
Operating system 2Operating system 2
Operating system 2
matsapit
 

More from Mark John Lado, MIT (20)

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

Recently uploaded (20)

Origin of Brahmi script: A breaking down of various theories
Origin of Brahmi script: A breaking down of various theoriesOrigin of Brahmi script: A breaking down of various theories
Origin of Brahmi script: A breaking down of various theories
PrachiSontakke5
 
*"Sensing the World: Insect Sensory Systems"*
*"Sensing the World: Insect Sensory Systems"**"Sensing the World: Insect Sensory Systems"*
*"Sensing the World: Insect Sensory Systems"*
Arshad Shaikh
 
LDMMIA Reiki Yoga S5 Daily Living Workshop
LDMMIA Reiki Yoga S5 Daily Living WorkshopLDMMIA Reiki Yoga S5 Daily Living Workshop
LDMMIA Reiki Yoga S5 Daily Living Workshop
LDM Mia eStudios
 
LDMMIA Reiki News Ed3 Vol1 For Team and Guests
LDMMIA Reiki News Ed3 Vol1 For Team and GuestsLDMMIA Reiki News Ed3 Vol1 For Team and Guests
LDMMIA Reiki News Ed3 Vol1 For Team and Guests
LDM Mia eStudios
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 9 THEO ĐƠN VỊ BÀI HỌC - GLOBAL SUCCESS - CẢ NĂM (TỪ...
BÀI TẬP BỔ TRỢ TIẾNG ANH 9 THEO ĐƠN VỊ BÀI HỌC - GLOBAL SUCCESS - CẢ NĂM (TỪ...BÀI TẬP BỔ TRỢ TIẾNG ANH 9 THEO ĐƠN VỊ BÀI HỌC - GLOBAL SUCCESS - CẢ NĂM (TỪ...
BÀI TẬP BỔ TRỢ TIẾNG ANH 9 THEO ĐƠN VỊ BÀI HỌC - GLOBAL SUCCESS - CẢ NĂM (TỪ...
Nguyen Thanh Tu Collection
 
Myasthenia gravis (Neuromuscular disorder)
Myasthenia gravis (Neuromuscular disorder)Myasthenia gravis (Neuromuscular disorder)
Myasthenia gravis (Neuromuscular disorder)
Mohamed Rizk Khodair
 
MEDICAL BIOLOGY MCQS BY. DR NASIR MUSTAFA
MEDICAL BIOLOGY MCQS  BY. DR NASIR MUSTAFAMEDICAL BIOLOGY MCQS  BY. DR NASIR MUSTAFA
MEDICAL BIOLOGY MCQS BY. DR NASIR MUSTAFA
Dr. Nasir Mustafa
 
Transform tomorrow: Master benefits analysis with Gen AI today webinar, 30 A...
Transform tomorrow: Master benefits analysis with Gen AI today webinar,  30 A...Transform tomorrow: Master benefits analysis with Gen AI today webinar,  30 A...
Transform tomorrow: Master benefits analysis with Gen AI today webinar, 30 A...
Association for Project Management
 
puzzle Irregular Verbs- Simple Past Tense
puzzle Irregular Verbs- Simple Past Tensepuzzle Irregular Verbs- Simple Past Tense
puzzle Irregular Verbs- Simple Past Tense
OlgaLeonorTorresSnch
 
Rock Art As a Source of Ancient Indian History
Rock Art As a Source of Ancient Indian HistoryRock Art As a Source of Ancient Indian History
Rock Art As a Source of Ancient Indian History
Virag Sontakke
 
Ajanta Paintings: Study as a Source of History
Ajanta Paintings: Study as a Source of HistoryAjanta Paintings: Study as a Source of History
Ajanta Paintings: Study as a Source of History
Virag Sontakke
 
How to Configure Public Holidays & Mandatory Days in Odoo 18
How to Configure Public Holidays & Mandatory Days in Odoo 18How to Configure Public Holidays & Mandatory Days in Odoo 18
How to Configure Public Holidays & Mandatory Days in Odoo 18
Celine George
 
What is the Philosophy of Statistics? (and how I was drawn to it)
What is the Philosophy of Statistics? (and how I was drawn to it)What is the Philosophy of Statistics? (and how I was drawn to it)
What is the Philosophy of Statistics? (and how I was drawn to it)
jemille6
 
Final Evaluation.docx...........................
Final Evaluation.docx...........................Final Evaluation.docx...........................
Final Evaluation.docx...........................
l1bbyburrell
 
Mental Health Assessment in 5th semester bsc. nursing and also used in 2nd ye...
Mental Health Assessment in 5th semester bsc. nursing and also used in 2nd ye...Mental Health Assessment in 5th semester bsc. nursing and also used in 2nd ye...
Mental Health Assessment in 5th semester bsc. nursing and also used in 2nd ye...
parmarjuli1412
 
ANTI-VIRAL DRUGS unit 3 Pharmacology 3.pptx
ANTI-VIRAL DRUGS unit 3 Pharmacology 3.pptxANTI-VIRAL DRUGS unit 3 Pharmacology 3.pptx
ANTI-VIRAL DRUGS unit 3 Pharmacology 3.pptx
Mayuri Chavan
 
Overview Well-Being and Creative Careers
Overview Well-Being and Creative CareersOverview Well-Being and Creative Careers
Overview Well-Being and Creative Careers
University of Amsterdam
 
Ancient Stone Sculptures of India: As a Source of Indian History
Ancient Stone Sculptures of India: As a Source of Indian HistoryAncient Stone Sculptures of India: As a Source of Indian History
Ancient Stone Sculptures of India: As a Source of Indian History
Virag Sontakke
 
TERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptx
TERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptxTERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptx
TERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptx
PoojaSen20
 
Cultivation Practice of Turmeric in Nepal.pptx
Cultivation Practice of Turmeric in Nepal.pptxCultivation Practice of Turmeric in Nepal.pptx
Cultivation Practice of Turmeric in Nepal.pptx
UmeshTimilsina1
 
Origin of Brahmi script: A breaking down of various theories
Origin of Brahmi script: A breaking down of various theoriesOrigin of Brahmi script: A breaking down of various theories
Origin of Brahmi script: A breaking down of various theories
PrachiSontakke5
 
*"Sensing the World: Insect Sensory Systems"*
*"Sensing the World: Insect Sensory Systems"**"Sensing the World: Insect Sensory Systems"*
*"Sensing the World: Insect Sensory Systems"*
Arshad Shaikh
 
LDMMIA Reiki Yoga S5 Daily Living Workshop
LDMMIA Reiki Yoga S5 Daily Living WorkshopLDMMIA Reiki Yoga S5 Daily Living Workshop
LDMMIA Reiki Yoga S5 Daily Living Workshop
LDM Mia eStudios
 
LDMMIA Reiki News Ed3 Vol1 For Team and Guests
LDMMIA Reiki News Ed3 Vol1 For Team and GuestsLDMMIA Reiki News Ed3 Vol1 For Team and Guests
LDMMIA Reiki News Ed3 Vol1 For Team and Guests
LDM Mia eStudios
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 9 THEO ĐƠN VỊ BÀI HỌC - GLOBAL SUCCESS - CẢ NĂM (TỪ...
BÀI TẬP BỔ TRỢ TIẾNG ANH 9 THEO ĐƠN VỊ BÀI HỌC - GLOBAL SUCCESS - CẢ NĂM (TỪ...BÀI TẬP BỔ TRỢ TIẾNG ANH 9 THEO ĐƠN VỊ BÀI HỌC - GLOBAL SUCCESS - CẢ NĂM (TỪ...
BÀI TẬP BỔ TRỢ TIẾNG ANH 9 THEO ĐƠN VỊ BÀI HỌC - GLOBAL SUCCESS - CẢ NĂM (TỪ...
Nguyen Thanh Tu Collection
 
Myasthenia gravis (Neuromuscular disorder)
Myasthenia gravis (Neuromuscular disorder)Myasthenia gravis (Neuromuscular disorder)
Myasthenia gravis (Neuromuscular disorder)
Mohamed Rizk Khodair
 
MEDICAL BIOLOGY MCQS BY. DR NASIR MUSTAFA
MEDICAL BIOLOGY MCQS  BY. DR NASIR MUSTAFAMEDICAL BIOLOGY MCQS  BY. DR NASIR MUSTAFA
MEDICAL BIOLOGY MCQS BY. DR NASIR MUSTAFA
Dr. Nasir Mustafa
 
Transform tomorrow: Master benefits analysis with Gen AI today webinar, 30 A...
Transform tomorrow: Master benefits analysis with Gen AI today webinar,  30 A...Transform tomorrow: Master benefits analysis with Gen AI today webinar,  30 A...
Transform tomorrow: Master benefits analysis with Gen AI today webinar, 30 A...
Association for Project Management
 
puzzle Irregular Verbs- Simple Past Tense
puzzle Irregular Verbs- Simple Past Tensepuzzle Irregular Verbs- Simple Past Tense
puzzle Irregular Verbs- Simple Past Tense
OlgaLeonorTorresSnch
 
Rock Art As a Source of Ancient Indian History
Rock Art As a Source of Ancient Indian HistoryRock Art As a Source of Ancient Indian History
Rock Art As a Source of Ancient Indian History
Virag Sontakke
 
Ajanta Paintings: Study as a Source of History
Ajanta Paintings: Study as a Source of HistoryAjanta Paintings: Study as a Source of History
Ajanta Paintings: Study as a Source of History
Virag Sontakke
 
How to Configure Public Holidays & Mandatory Days in Odoo 18
How to Configure Public Holidays & Mandatory Days in Odoo 18How to Configure Public Holidays & Mandatory Days in Odoo 18
How to Configure Public Holidays & Mandatory Days in Odoo 18
Celine George
 
What is the Philosophy of Statistics? (and how I was drawn to it)
What is the Philosophy of Statistics? (and how I was drawn to it)What is the Philosophy of Statistics? (and how I was drawn to it)
What is the Philosophy of Statistics? (and how I was drawn to it)
jemille6
 
Final Evaluation.docx...........................
Final Evaluation.docx...........................Final Evaluation.docx...........................
Final Evaluation.docx...........................
l1bbyburrell
 
Mental Health Assessment in 5th semester bsc. nursing and also used in 2nd ye...
Mental Health Assessment in 5th semester bsc. nursing and also used in 2nd ye...Mental Health Assessment in 5th semester bsc. nursing and also used in 2nd ye...
Mental Health Assessment in 5th semester bsc. nursing and also used in 2nd ye...
parmarjuli1412
 
ANTI-VIRAL DRUGS unit 3 Pharmacology 3.pptx
ANTI-VIRAL DRUGS unit 3 Pharmacology 3.pptxANTI-VIRAL DRUGS unit 3 Pharmacology 3.pptx
ANTI-VIRAL DRUGS unit 3 Pharmacology 3.pptx
Mayuri Chavan
 
Overview Well-Being and Creative Careers
Overview Well-Being and Creative CareersOverview Well-Being and Creative Careers
Overview Well-Being and Creative Careers
University of Amsterdam
 
Ancient Stone Sculptures of India: As a Source of Indian History
Ancient Stone Sculptures of India: As a Source of Indian HistoryAncient Stone Sculptures of India: As a Source of Indian History
Ancient Stone Sculptures of India: As a Source of Indian History
Virag Sontakke
 
TERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptx
TERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptxTERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptx
TERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptx
PoojaSen20
 
Cultivation Practice of Turmeric in Nepal.pptx
Cultivation Practice of Turmeric in Nepal.pptxCultivation Practice of Turmeric in Nepal.pptx
Cultivation Practice of Turmeric in Nepal.pptx
UmeshTimilsina1
 
Ad

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
  翻译: