1.2.1 Systems Software

?
  • Created by: Zruixx
  • Created on: 23-03-23 11:37
What is an Operating System?
An Operating System is an essential piece of software that is loaded when a computer boots up.
1 of 33
What is the purpose of the OS?
The OS controls the hardware within a computer by using “Managers” and also provides a API (Application Programming Interface).
2 of 33
What is the API?
The Application Programming Interface is a set of code libraries that software developers can use to write applications for that operating system
3 of 33
What are the 5 Managers?
1. Memory Manager
2. Process Manager
3. Device Manager
4. File Manager
5. Network Manager
4 of 33
What are Distributed Operating Systems?
Distributed Operating Systems run across multiple devices, allowing the load to be spread across multiple computer processors when a task is run.
5 of 33
What are Embedded Operating Systems?
Built to perform a small range of specific tasks, this operating system is catered towards a specific device. They are limited in their functionality and hard to update although they consume significantly less.
6 of 33
What are Multi-tasking Operating Systems?
Multi-tasking operating systems enable the user to carry out task seemingly simultaneously. This is done by using time slicing to switch quickly between programs and applications in memory.
7 of 33
What are Multi-User Operating Systems?
Multiple Users make use of one computer, typically a supercomputer, within a multi-user system. Therefore a scheduling algorithm must be used to ensure processor time is shared fairly between jobs.
8 of 33
What are Real Time Operating Systems?
Commonly used in time-critical computer systems, a real time OS is designed to perform a task within a guaranteed time frame.
9 of 33
What are the BIOS?
Basic Input Output System is the first program that runs when a computer system is switch on. The Program Counter points to the location of the BIOS upon each start up
10 of 33
What is a POST?
Power on Self Test, which insures that all hardware connected is functioning correctly
11 of 33
What is the purpose of The Memory Manager?
- The Memory Manager controls the allocation of RAM to each running process.
- If the memory manger fails to manage memory effectively, then the computer may slow down or crash.
12 of 33
What is the Process Manager?
The Process Manager controls access to shared resources and manages the scheduling and execution of applications
13 of 33
What is Multitasking?
Modern operating systems allow multiple applications to run at once. This is known as Multitasking
14 of 33
What is Paging?
Paging splits the main memory into 4 kb sections known as pages. When programs run they are allowed a set number of pages to run in, these can be non-contiguous.
15 of 33
What is Segmentation?
Segmentation is the splitting up of memory into logical sized divisions, known as segments, which vary in size. These are representative of the structure and logical flow of the program.
16 of 33
What is Virtual Memory?
Virtual Memory uses a section of the hard drive to act as RAM when the space in main memory is insufficient to store programs being used. Sections of programs that are not currently being used are temporarily moved into virtual memory.
17 of 33
What are Device Drivers?
Device Drivers are computer programs which are provided by the operating system and allow the operating system to interact with hardware. Device drivers are specific to the computer architecture, therefore different drivers must be used for different devi
18 of 33
How do Drivers work?
When a piece of hardware is used, such as a keyboard, it is the device driver that communicates this request to the operating system which can then produce the relevant output.
19 of 33
What are Virtual Machines?
A virtual machine is a theoretical computer in that it is a software implementation of a computer system. It provides an environment with a translator for intermediate code to run.
20 of 33
What is Intermediate Code?
Code that is halfway between machine code and object code is called intermediate code. This is independent of the processor architecture so can be used across different machines and operating systems.
21 of 33
What are Interrupts?
Interrupts are signals generated by software or hardware to indicate to the processor that a process needs attention.
22 of 33
How are Interrupts Stored?
Interrupts are stored in order of their priority within an abstract data structure called a priority queue in the interrupt register.
23 of 33
When do the Interrupts get checked?
The processor checks the contents of the interrupt register at the end of each Fetch-Decode-Execute cycle.
24 of 33
What happens during the ISR?
1. Higher Priority Interrupt Exists
2. Contents of Registers moved into a Stack
3. Correct ISR loaded into RAM
4. Previous Register Contents loaded back
25 of 33
What is Scheduling?
Scheduling is a core function of operating systems that ensures all sections of programs being run (or jobs) receive a fair amount of processing time. This is done by implementing various scheduling algorithms.
26 of 33
What is Pre-emptive Scheduling?
Jobs are actively made to start and stop by the operating system. Examples: Multilevel Feedback Queues, Shortest Remaining Time, Round Robin.
27 of 33
What is Non Pre-emptive Scheduling?
Once a job is started, it is left alone until it is completed. Examples: First Come First Served, Shortest Job First.
28 of 33
What happens during Round Robin Scheduling?
1. Each Job Given a Time Slice
2. Once all Jobs have used their time slice, they are granted an equal slice of time.
3. Continues until a job has completed
29 of 33
What are Multilevel Feedback Queues?
Multilevel Feedback Queues makes use of multiple queues, each of which is ordered based on a different priority.
30 of 33
What is Shortest Remaining Time?
The queue storing jobs processed is ordered according to the time left for completion, with the jobs with the least time to completion being serviced first.
31 of 33
What is First Come First Served Scheduling?
Jobs are processed in chronological order by which they entered the queue.
32 of 33
What is Shortest Job First?
The queue storing jobs to be processed is ordered according to the time required for completion, with the longest jobs being serviced at the end.
33 of 33

Other cards in this set

Card 2

Front

What is the purpose of the OS?

Back

The OS controls the hardware within a computer by using “Managers” and also provides a API (Application Programming Interface).

Card 3

Front

What is the API?

Back

Preview of the front of card 3

Card 4

Front

What are the 5 Managers?

Back

Preview of the front of card 4

Card 5

Front

What are Distributed Operating Systems?

Back

Preview of the front of card 5
View more cards

Comments

No comments have yet been made

Similar Computing resources:

See all Computing resources »See all 1.2.1 Systems Software resources »