Operating Systems Flashcards

1
Q

What is an operating system (OS)?

A

A program that controls the execution of application programs and acts as an interface between applications and the computer hardware

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

List the services provided by operating systems.

A
  • File management
  • Input/output management
  • Process management
  • Memory management
  • Multiprocessor management
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the most central part of an operating system?

A

The kernel

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

What is user mode in an operating system?

A

A mode where certain areas of memory are not accessible and certain instructions cannot be executed.

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

What is a mode switch?

A

A transition between user mode and kernel mode that is computationally expensive.

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

What are the four possible operating system structures?

A
  • Monolithic
  • Layered
  • Microkernel
  • Modular
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Describe the monolithic structure of an operating system.

A

All services are implemented by a large kernel. Any new feature is added to the kernel.

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

What are the pros of the monolithic structure?

A

Communication within the kernel is fast.

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

What are the cons of the monolithic structure?

A

Difficult to understand, difficult to modify, and less secure.

If something goes wrong it goes really wrong

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

Describe the layered structure of an operating system.

A

Organizes services into distinct layers where each layer can only communicate with adjacent layers.

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

What are the pros of the layered structure?

A

Easy to debug and development can be organized into separate units.

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

What are the cons of the layered structure?

A

Performance may be poor due to multiple layers for service access.

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

Describe the microkernel structure of an operating system.

A

Services are implemented by servers, and a small kernel delivers messages between them.

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

What are the pros of the microkernel structure?

A

Secure and reliable.

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

What are the cons of the microkernel structure?

A

Performance may be poor due to increased communication overhead.

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

Describe the modular structure of an operating system.

A

Begins with a small kernel and adds or removes additional modules as needed.

17
Q

What are the pros of the modular structure?

A

Fast since unnecessary services do not need to be loaded; allows for direct communication between modules.

18
Q

What are the cons of the modular structure?

A

As the number of loaded modules increases, the OS begins to resemble a monolithic structure.

19
Q

What are the objectives of an operating system (OS)

A

The objectives of an OS are to achieve convenience, efficiency, and the ability to evolve.

20
Q

What does the functionality of the kernel depend on

A

The OS design

21
Q

What is the kernel the subset of

A

Kernal is a subset of the operating system

22
Q

When designing OS what do we want to minimise

A

Mode switches

23
Q

What is the impact if something goes wrong in the user mode

A

Very limited impact as the application can only access its own memory and can’t interact with hardware directly