SLR 4/ Operating Systems Flashcards

1
Q

What are the 9 roles of the Operating System

A

Hardware
Managing Programs
System Security
UI
Managing the processor
Memory Management
Handling input/output from peripherals
Networking
File Management

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Name the 5 Scheduling types

A

-First Come First Served (FCFS)
-Round Robin (RR)
-Multi-Level Feedback queues (MFQ)
-Shortest Job First (SJF)
-Shortest remaining time (SRT)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Define First Come First Served (FCFS)

A

Processes are executed in order as they arrive. If the process takes long the others will simply have to wait.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Define Round Robin (RR)

A

Each process is allocated a fixed amount of time, known as a time slice. If the process is not complete by the end of its time slice, it returns to the back of the queue.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Define Multi-Level Feedback queues (MFQ)

A

Several queues are used, each with a different scheduling algorithm and priorities. Jobs are able to move between queues as their priorities change.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Define Shortest Job First (SJF)

A

Picks the processes that take the shortest time and runs them until they finish. The schedular needs to know how long each process will take.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Define Shortest remaining time (SRT)

A

Similar to SJF. It is pre-emptive which mean processes can be suspended if a higher priority joins the queue. If a process with a shorter time joins, it goes into the running state and the current process goes back in the queue.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Name the 5 different types of Operating Systems

A

-Multi-tasking operating system
-Multi-user operating system
-Distributed operating system
-Embedded operating system
-Real-time operating system

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Define Multi-tasking operating system

A

Can run multiple programs at the same time.
Desktop/smartphone

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Define Multi-user operating system

A

Allows many users to access the system and its resources at the same time. Computer will mange users access. Server OS software manages the multiple people using different computers on a network at the same time.
Used in schools and offices

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Define Distributed operating system

A

Allows many computers to work together to carry out a single task.
Data Centre’s, Large Companies, Data mining

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Define Embedded operating system

A

Designed to run inside single-use systems rather than general-purpose computers. Low power, little memory and dedicated hardware.
Washing Machine, Microwave.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Define Real-time operating system

A

Designed to carry out actions within a fixed and assured amount of time.
-Heart Monitors, Radar Systems

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Describe the process of a computer booting up

A

1.ROM boots the Power On Self Test (POST) to check everything the computer needs is available
2. Clears registers and loads the address of the first instruction in the boot program into the Program Counter (PC)
3.Control is passed to boot program which checks the hardware
4.Check for any BIOS
5.BIOS is run on ROM and is sent to RAM
6. The computer is ready to load the OS usually found on the hard disk
7. OS takes control

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Explain Device Drivers

A

All types of operating systems need to communicate and interact with a wide range of different devices.
A device driver is a piece of software normally supplied with a new device when you buy it. It tells the operating system how it should communicate with the device.​

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is Segmentation

A

Segmentation – this divides memory up into physical divisions, not logical.​

Different-sized blocks of memory are carved up on the fly as needed.

17
Q

What is Paging

A

Paging. Memory is split into logical divisions. These are fixed-sized pages

18
Q

What is an Interrupt

A

An interrupt occurs when a device or other system event needs the CPU to give it attention. The CPU will stop working on its current task so that is is able to process the Interrupt Service Routine (ISR).
Common reasons an interrupt may occur are
-A key pressed on a keyboard
-A printer is out of paper
-A timer interrupt

19
Q

What is Virtual Memory?

A

When RAM is full it uses Virtual Memory in the Hard Disk. If pages/segments from memory keep getting moved to the hard disk , this is called Thrashing. This makes the computer very slow

20
Q

Explain an Interrupt

A

The CPU must give attention to and stop the current task. In the FDE cycle after execute the CPU will check for Interrupts. Code for interrupts is called the Interrupt Service Routine (ISR). The ISR has its own instructions to be fetched, decoded and executed. That means the contents of the program counter must need to be changed to the address of the interrupt. Interrupts always have a higher priority than normal programs.

21
Q

What happens to the values in the registers when an Interrupt occurs?

A

When an interrupt is received the current values in the registers are copied to a data structure in memory called a Stack saving them for later. Once the interrupt is complete, the frame is Popped off the stack. This allows the values to be loaded back into the registers and carried on.

22
Q

Examples of interrupts

A

-Printer ink
-Power supply failure
-Power button pressed
-Moving the mouse
-Keyboard Pressed

23
Q

Define Scheduling

A

Managers which processes to execute next and the length of time the next process can execute for. As processes enter they are in the “Ready Queue”. When the current process finished it can enter the “Running State”

24
Q

Can OS overlap ?

A

Yes, a system can have an OS with a multi tasking capabilities whilst also being multi user.

25
Q

What is BIOS?

A

Basic Input Output Systems
-First uses the power on self test (POST) to check for the computer parts
-The bootstrap loads the OS into memory
-Stored in ROM
-BIOS settings stored in Flash memory

26
Q

What are Device Drivers?

A

Software that tells the OS how to communicate with a device

27
Q

What is a Virtual Machine?

A

A program that has the same functionality as a physical computer. For example many old arcade games can be emulated on modern machines. The program is unaware it is being emulated it is being executed exactly as it was originally. This is an example of virtual machines.

28
Q

What is Intermediate code?

A

Java is a good example. Java is designed to run on multiple platforms. So instead of having to use a specific language for each device or use compilers, Java uses intermediate code called “bytecode”. This is translated by Java using the Java Virtual Machine (JVM) so it can be run. This makes Java very portable.