Operating System Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

What is an operating system?

A

provides a link between the hardware and the user
all the complexities of the underlying hardware are hidden from view meaning the user can focus on what they want to do

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

OS examples

A

windows (family)
linux (family)
iOS
android
macOS
DOS
freeDOS
opera
most modern ones use GUIs except some such as DOS and freeDOS use CLI(Command Line Interface)

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

Key features of a OS

A

file management
memory management
process manager/scheduler
security
user interface
hardware management/device drivers
utility software
interrupt service
software platform

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

File management

A

data is stored in files
files have an extension which indicates to the OS which applications to open the file in
the OS provides the ability to copy/paste, delete and move files around
can structure where files are stored with folders

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

Resource management

A

if you have multiple things all loaded up your OS must juggle all these processes even though it feels like everything is happening at the same time

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

Security

A

OS must keep your device secure
mostly achieved by preventing users and applications from accessing/modifying certain files
different user profiles have different permissions
most modern OSs also come with an anti-virus(which is utility software)

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

User interfaces

A

without a UI interacting with a computer is impossible
a GUI allows for abstract concepts like double click minimise the window and show desktop
some OSs hvae text-based user interfaces, CLIs(typically for older OSs)

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

Device drivers

A

is a piece of software that forms a part of an OS
each driver will have different requirements, it is unreasonable to expect an OS to have the ability to interact with every single device
when you use a new device you’ll often have to install a new driver to enable the device to work

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

Loading the OS

A

power is applied
CPU reads the bootstrap from RAM
bootstrap is executed
hardware test is performed
booting halts(failed)
or
OS is loaded into memory
OS takes control of hardware and boot process complete(successful)

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

How an OS is structured

A

physical hardware is only interacted with through the kernel
kernel has complete control of the hardware and direct interaction
all applications interact with the OS which then interacts with the kernel which in turn interacts with the hardware

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

Kernel misbehaves

A

if a program within the kernel crashes (or has an error) the whole system usually crashes
most applications do not have access to kernel level control, and those that do are incredibly well tested
many applications that are core to the OS do not have kernel level access

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